base.css 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373
  1. /*
  2. * Common CSS for all themes
  3. */
  4. @import url('bootstrap.css');
  5. /* some changes to the bootstrap.css */
  6. /* when doing a var_dump*/
  7. pre {
  8. margin-top: 40px;
  9. }
  10. /* chzn-select fix */
  11. select {
  12. width: auto;
  13. }
  14. .invisible {
  15. visibility: visible;
  16. }
  17. legend {
  18. margin-bottom: 10px;
  19. }
  20. #header_right {
  21. text-align: right;
  22. }
  23. #header_right #notifications {
  24. padding: 40px 0px 0px 0px;
  25. }
  26. header #logo {
  27. padding: 0px 0px 15px 0px;
  28. }
  29. .subnav .brand {
  30. display: none;
  31. }
  32. .subnav .navbar-inner {
  33. box-shadow: none;
  34. }
  35. .subnav .dropdown-menu li a {
  36. color: #333;
  37. }
  38. .subnav li a {
  39. margin: 0px;
  40. }
  41. .subnav {
  42. /*font-size: 11px;
  43. font-weight: bold;*/
  44. }
  45. .subnav .btn-navbar {
  46. background: #efefef;
  47. }
  48. .subnav .btn-navbar .icon-bar {
  49. background-color: #888;
  50. }
  51. .subnav-fixed {
  52. position: fixed;
  53. top: 0px;
  54. left: 0;
  55. right: 0;
  56. z-index: 1030;
  57. border-color: #d5d5d5;
  58. border-width: 0 0 1px; /* drop the border on the fixed edges */
  59. -webkit-border-radius: 0;
  60. -moz-border-radius: 0;
  61. border-radius: 0;
  62. /*-webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
  63. -moz-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
  64. box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
  65. */
  66. }
  67. .subnav {
  68. margin-bottom: 0px;
  69. }
  70. /* Subnav */
  71. .subnav .navbar-inner {
  72. -webkit-border-radius: 4px;
  73. -moz-border-radius: 4px;
  74. border-radius: 4px;
  75. /* default subnav color */
  76. background-color: #eeeeee; /* Old browsers */
  77. background-repeat: repeat-x; /* Repeat the gradient */
  78. background-image: -moz-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* FF3.6+ */
  79. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #eeeeee)); /* Chrome,Safari4+ */
  80. background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* Chrome 10+,Safari 5.1+ */
  81. background-image: -ms-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* IE10+ */
  82. background-image: -o-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* Opera 11.10+ */
  83. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#f5f5f5', endColorstr = '#eeeeee', GradientType = 0); /* IE6-9 */
  84. background-image: linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* W3C */
  85. border: 1px solid #e5e5e5;
  86. margin-bottom: 0px;
  87. padding-left: 4px;
  88. padding-right: 4px;
  89. /* end default subnav background colors */
  90. }
  91. /* fixing gray border next the logout button */
  92. .subnav .nav-tabs .open .dropdown-toggle, .subnav .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
  93. border-color: transparent;
  94. }
  95. .subnav .nav > li > a {
  96. margin: 0;
  97. border-left: 1px solid #f5f5f5;
  98. border-right: 1px solid #e5e5e5;
  99. -webkit-border-radius: 0;
  100. -moz-border-radius: 0;
  101. border-radius: 0;
  102. }
  103. .subnav .nav > #current > a,
  104. .subnav .nav > #current > a:hover {
  105. padding-left: 13px;
  106. color: #777;
  107. background-color: #e9e9e9;
  108. border-right-color: #ddd;
  109. border-left: 0;
  110. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .05);
  111. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .05);
  112. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .05);
  113. }
  114. .subnav .nav > #current > a .caret,
  115. .subnav .nav > #current > a:hover .caret {
  116. border-top-color: #777;
  117. }
  118. .subnav .nav > li:last-child > a {
  119. border-right: 0;
  120. }
  121. .subnav .dropdown-menu {
  122. -webkit-border-radius: 0 0 4px 4px;
  123. -moz-border-radius: 0 0 4px 4px;
  124. border-radius: 0 0 4px 4px;
  125. }
  126. .subnav .nav > li:first-child > a,
  127. .subnav .nav > li:first-child > a:hover {
  128. -webkit-border-radius: 0;
  129. -moz-border-radius: 0;
  130. border-radius: 0;
  131. }
  132. .subnav .nav > li > a:hover {
  133. text-decoration: none;
  134. color: #aaa;
  135. }
  136. .subnav .nav > li a {
  137. text-shadow: none;
  138. }
  139. header {
  140. margin-bottom: 11px;
  141. }
  142. .breadcrumb {
  143. margin-bottom: 0px;
  144. }
  145. .breadcrumb a, .breadcrumb li {
  146. text-shadow:none;
  147. font-size: 13px;
  148. }
  149. /* To fix the increase/decrease buttons */
  150. label, input, button, select, textarea, p {
  151. font-size: inherit;
  152. }
  153. .badge-group {
  154. width: 200px;
  155. position: relative;
  156. }
  157. .badge-group .badge {
  158. float: left;
  159. position: relative;
  160. }
  161. .badge-group > :first-child {
  162. z-index: 1000;
  163. }
  164. .badge-group > :nth-child(2) {
  165. z-index: 900;
  166. }
  167. .badge-group > :nth-child(3) {
  168. z-index: 800;
  169. }
  170. .badge-group > :nth-child(4) {
  171. z-index: 700;
  172. }
  173. .badge-group > :nth-child(5) {
  174. z-index: 600;
  175. }
  176. .badge-group .badge:not(:first-child) {
  177. margin-left: -13px;
  178. padding-left: 15px;
  179. }
  180. /* button with image */
  181. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back {
  182. padding-left: 30px;
  183. background-position: 8px !important;
  184. background-repeat: no-repeat;
  185. }
  186. /* button << */
  187. button.arrowl, button.arrowr, input.arrowl, input.arrowr {
  188. margin: 0px 15px 0px 15px;
  189. padding: 15px 18px;
  190. background-position: 7px;
  191. }
  192. /*including "arrowl" image*/
  193. button.arrowl, button.arrowr, input.arrowl, input.arrowr {
  194. background-repeat: no-repeat;
  195. }
  196. button.arrowl:hover, button.arrowr:hover, input.arrowl:hover, input.arrowr:hover {
  197. background-position: 7px;
  198. }
  199. /* Fixing old chamilo forms */
  200. /* fixes the * */
  201. span.form_required {
  202. padding-right: 5px;
  203. }
  204. form .formw {
  205. margin-left: 170px;
  206. }
  207. form .formw input {
  208. float: left;
  209. }
  210. .formw input[type="checkbox"], .formw input[type="radio"] {
  211. margin-right: 5px;
  212. margin-top: 2px;
  213. }
  214. #accept_licence, #checkbox {
  215. margin-right: 5px;
  216. margin-top: -1px;
  217. }
  218. /* end chamilo forms fixes */
  219. /* New changes Chamilo 1.9 */
  220. .well h4 {
  221. padding: 3px 15px;
  222. }
  223. #login_block #formLogin,
  224. #login_block #lang_form,
  225. #notice_block .homepage_notice {
  226. padding: 3px 15px;
  227. }
  228. .nav-list > .active > a,
  229. .nav-list > .active > a:hover {
  230. background-color: #999999;
  231. }
  232. .sidebar-nav {
  233. padding: 8px 0px;
  234. }
  235. .sidebar-nav-skill-wheel {
  236. padding-top: 0px;
  237. }
  238. .well_border {
  239. /* border: 1px solid rgba(0, 0, 0, 0.05);*/
  240. border: 1px solid #E1E1E0;
  241. border-radius: 4px 4px 4px 4px;
  242. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
  243. margin-bottom: 20px;
  244. min-height: 20px;
  245. padding: 19px;
  246. }
  247. .well_login {
  248. margin: 0 auto;
  249. width: 200px;
  250. }
  251. .well_login button {
  252. margin-left: 0px;
  253. }
  254. #progress_bar img {
  255. height: 26px;
  256. }
  257. #lp_navigation_elem .buttons {
  258. margin-bottom: 5px;
  259. }
  260. #lp_navigation_elem {
  261. padding-left: 15px;
  262. width: 110px;
  263. }
  264. html, body {
  265. margin: 0;
  266. padding: 0;
  267. }
  268. /* the sticky effect */
  269. html {
  270. height: 100%;
  271. }
  272. body {
  273. /* hack ignored by non-IE to enable ie to support :hover on button */
  274. behavior: url("/main/css/csshover3.htc");
  275. margin: 0;
  276. padding: 0;
  277. background-color: #fff;
  278. height: 100%; /* stick */
  279. }
  280. /* Sticky footer*/
  281. #wrapper {
  282. min-height: 100%;
  283. height: auto !important;
  284. height: 100%;
  285. margin: 0 auto -9em; /* Do not change this value */
  286. }
  287. #topbar {
  288. z-index: 9000; /* bug when using full area fckeditor */
  289. }
  290. footer {
  291. margin-top: 17px;
  292. padding-top: 17px;
  293. height: 9em;
  294. width: 100%;
  295. }
  296. /* Sticky footer*/
  297. .push {
  298. height: 9em; /* Very important */
  299. }
  300. footer .container .row {
  301. padding-top: 50px;
  302. }
  303. #footer_right #admin_name, #footer_right #software_name {
  304. text-align: right;
  305. }
  306. .page-header {
  307. padding-bottom: 10px;
  308. border-bottom: 1px solid #ddd;
  309. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  310. -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  311. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  312. }
  313. #topbar_push {
  314. height: 55px;
  315. }
  316. .actions {
  317. background: #efefef;
  318. border: 1px solid #ccc;
  319. margin-bottom: 11px;
  320. height: 32px;
  321. padding: 2px 2px 2px 14px;
  322. vertical-align: middle;
  323. }
  324. .actions .actions-pagination {
  325. float:right;
  326. margin-top:2px;
  327. }
  328. .actions .actions-pagination * {
  329. display:inline-block;
  330. float:none;
  331. margin:0;
  332. padding:0;
  333. }
  334. .actions .actions-pagination img {
  335. margin:6px;
  336. padding:0;
  337. }
  338. .actions form {
  339. margin-bottom: 0px;
  340. }
  341. .actions a img {
  342. padding: 0px;
  343. margin: 0px;
  344. float: left;
  345. }
  346. .actions fieldset {
  347. margin-top: 0px;
  348. }
  349. .muted {
  350. color: #999999 !important;
  351. }
  352. .actions img {
  353. padding-right: 10px;
  354. border: none;
  355. text-decoration: none;
  356. vertical-align: middle;
  357. }
  358. .actions a {
  359. display: block;
  360. float: left;
  361. margin-right: 10px;
  362. vertical-align: middle;
  363. }
  364. .actions .btn-toolbar {
  365. margin: 0px;
  366. }
  367. .actions span {
  368. margin-right: 10px;
  369. vertical-align: middle;
  370. }
  371. .actions form {
  372. margin-right: 10px;
  373. vertical-align: middle;
  374. }
  375. .actions fieldset {
  376. margin-top: 0px;
  377. }
  378. #friend-container .thumbnail {
  379. min-height: 140px;
  380. }
  381. #friend-container .thumbnail img {
  382. max-height: 100px;
  383. }
  384. .show-grid [class*="span"] {
  385. background-color: #EEEEEE;
  386. border-bottom-left-radius: 3px;
  387. border-bottom-right-radius: 3px;
  388. border-top-left-radius: 3px;
  389. border-top-right-radius: 3px;
  390. line-height: 30px;
  391. min-height: 30px;
  392. text-align: center;
  393. }
  394. a.tag {
  395. background-color: #E0EAF1;
  396. border-bottom: 1px solid #3E6D8E;
  397. border-right: 1px solid #7F9FB6;
  398. color: #3E6D8E;
  399. font-size: 90%;
  400. line-height: 2.4;
  401. margin: 2px 2px 2px 0;
  402. padding: 3px 4px;
  403. text-decoration: none;
  404. white-space: nowrap;
  405. }
  406. /* User portal */
  407. #settings h4 {
  408. margin-bottom: 10px;
  409. }
  410. /* Admin index.php */
  411. #settings .span6 {
  412. min-height: 320px;
  413. }
  414. /* user_portal course status icon */
  415. .coursestatusicons {
  416. border: 0px solid #000;
  417. float: left;
  418. padding-right: 5px;
  419. width: auto;
  420. }
  421. /* user_portal course list */
  422. .courses {
  423. list-style-type: none;
  424. margin-bottom: 5px;
  425. height: 30px;
  426. }
  427. /* user_portal session list */
  428. .session_course_item .courses {
  429. margin-bottom: 5px;
  430. height: 35px;
  431. }
  432. .session_course_item {
  433. /* padding: 0px; */
  434. margin: 0px;
  435. margin-bottom: 15px;
  436. font-size: 135%;
  437. }
  438. .userportal-course-item {
  439. -webkit-border-radius: 10px;
  440. -moz-border-radius: 10px;
  441. border-radius: 10px;
  442. background-color: #F9F9F9;
  443. /*padding:5px 10px 5px 10px;
  444. margin:0px 0px 10px 0px; */
  445. }
  446. .session_box_title {
  447. margin-bottom: 7px;
  448. }
  449. .session_course_item .item_closed, .userportal-course-item-title .item_closed {
  450. font-size: 80%;
  451. }
  452. #maincontent .courseslist li {
  453. margin-bottom: 8px;
  454. }
  455. .independent_course_item a {
  456. font-size: 135%;
  457. }
  458. .userportal-session-item {
  459. -webkit-border-radius: 10px;
  460. -moz-border-radius: 10px;
  461. border-radius: 10px;
  462. background-color: #F9F9F9;
  463. padding: 5px 10px 10px 6px;
  464. margin: 10px 0px;
  465. }
  466. .userportal-session-category-item {
  467. -webkit-border-radius: 10px;
  468. -moz-border-radius: 10px;
  469. border-radius: 10px;
  470. background-color: #F9F9F9;
  471. padding: 5px 10px 10px 16px;
  472. /* height:40px; */
  473. /*background-color:#f9f9f9; border:1px solid #dddddd; padding:5px 10px 5px 10px; margin-top: 10px; */
  474. }
  475. /*****************************************************
  476. * AGENDA *
  477. *****************************************************/
  478. #agenda {
  479. width: 100%;
  480. margin: 0 auto;
  481. border: 1px solid #bbb;
  482. border-collapse: collapse;
  483. }
  484. .agenda_month_divider {
  485. background-color: #dcdcdc;
  486. font-weight: bold;
  487. font-size: 12px;
  488. color: #666;
  489. text-align: center;
  490. }
  491. #agenda .title a {
  492. color: #fff;
  493. }
  494. #agenda .agendaitem {
  495. font-size: 12px;
  496. }
  497. #smallcalendar .title {
  498. background-color: #dcdcdc;
  499. font-weight: bold;
  500. padding: 5px;
  501. color: #666;
  502. text-align: center;
  503. font-size: 11px;
  504. }
  505. #smallcalendar .title a {
  506. color: #666;
  507. }
  508. #agenda_select {
  509. list-style: none;
  510. border: 0px solid green;
  511. margin: 30px 0 0 0;
  512. padding: 0 0 0 10px;
  513. }
  514. /* ---------------------------------------------------
  515. styles for the agenda (day, week, month view)
  516. -----------------------------------------------------*/
  517. #agenda_list {
  518. width: 100%;
  519. margin: 0 auto;
  520. border: 1px solid #fff;
  521. border-collapse: collapse;
  522. }
  523. /*The caption of the calendar (displays the month and the << and >> links*/
  524. #agenda_list .title {
  525. background-color: #dcdcdc;
  526. font-weight: bold;
  527. font-size: 12px;
  528. color: #666;
  529. text-align: left;
  530. padding: 2px 10px;
  531. text-align: center;
  532. border: 1px solid #bbb;
  533. }
  534. #agenda_list .title a:link, #agenda_list #title a:visited {
  535. background-color: #dcdcdc;
  536. font-weight: bold;
  537. font-size: 11px;
  538. color: #666;
  539. padding: 2px 10px;
  540. text-align: center;
  541. }
  542. #agenda_list .title a:hover {
  543. background-color: #dcdcdc;
  544. font-weight: bold;
  545. font-size: 11px;
  546. color: #f3840d;
  547. padding: 2px 10px;
  548. text-align: center;
  549. }
  550. /* The cells with the name of the days of the weeks (mon->sun)*/
  551. #agenda_list .weekdays, .data_table .weekdays {
  552. background-color: #dcdcdc;
  553. text-align: center;
  554. font-weight: bold;
  555. border: 1px solid #264269;
  556. border-collapse: collapse;
  557. }
  558. /* The cells for the days (1->31) */
  559. #agenda_list .days_week {
  560. height: 40px;
  561. width: 12%;
  562. text-align: left;
  563. vertical-align: top;
  564. border: 1px solid #ccc;
  565. border-collapse: collapse;
  566. background-color: #fff;
  567. }
  568. #agenda_list .days_week_selected {
  569. height: 40px;
  570. width: 12%;
  571. text-align: left;
  572. vertical-align: top;
  573. border: 1px solid #ccc;
  574. border-collapse: collapse;
  575. background-color: #f5f5f5;
  576. }
  577. #agenda_list .days_weekend {
  578. height: 40px;
  579. width: 12%;
  580. text-align: left;
  581. vertical-align: top;
  582. border: 1px solid #ccc;
  583. border-collapse: collapse;
  584. background-color: #e6e6e6;
  585. }
  586. #agenda_list .days_today {
  587. height: 40px;
  588. width: 12%;
  589. text-align: left;
  590. vertical-align: top;
  591. border: 1px solid #ccc;
  592. border-collapse: collapse;
  593. background-color: #FFFFC0;
  594. }
  595. #agenda_list th {
  596. background-color: #E5EDF9;
  597. border: 1px solid gray;
  598. padding-right: 12px;
  599. }
  600. /* text in the cells: display of agenda items (visible)*/
  601. #agenda_list .data {
  602. background-color: #eee;
  603. text-align: left;
  604. padding: 2px 10px;
  605. font-weight: bold;
  606. border: 0px solid #dcdcdc;
  607. border-collapse: collapse;
  608. }
  609. #agenda_list .datanotbold {
  610. background-color: #eee;
  611. text-align: left;
  612. padding: 2px 10px;
  613. font-weight: normal;
  614. border: 0px solid #dcdcdc;
  615. border-collapse: collapse;
  616. }
  617. #agenda_list .text {
  618. background-color: #fff;
  619. text-align: left;
  620. padding: 2px 10px;
  621. font-weight: normal;
  622. border: 0px solid #dcdcdc;
  623. border-collapse: collapse;
  624. }
  625. /*text in the cells: display of agenda items (invisible)*/
  626. #agenda_list .data_hidden {
  627. background-color: #eee;
  628. text-align: left;
  629. padding: 2px 10px;
  630. font-weight: bold;
  631. border: 0px solid #dcdcdc;
  632. border-collapse: collapse;
  633. color: #999999;
  634. }
  635. #agenda_list .datanotbold_hidden {
  636. background-color: #eee;
  637. text-align: left;
  638. padding: 2px 10px;
  639. font-weight: normal;
  640. border: 0px solid #dcdcdc;
  641. border-collapse: collapse;
  642. color: #999999;
  643. }
  644. #agenda_list .text_hidden {
  645. background-color: #fff;
  646. text-align: left;
  647. padding: 2px 10px;
  648. font-weight: normal;
  649. border: 0px solid #dcdcdc;
  650. border-collapse: collapse;
  651. color: #999999;
  652. }
  653. /*text in the cells: display of agenda items (highlighted)*/
  654. #agenda_list .datanow {
  655. background-color: #FFCC00;
  656. text-align: left;
  657. padding: 2px 10px;
  658. font-weight: bold;
  659. border: 0px solid #dcdcdc;
  660. border-collapse: collapse;
  661. }
  662. #agenda_list .datanotboldnow {
  663. background-color: #FFCC00;
  664. text-align: left;
  665. padding: 2px 10px;
  666. font-weight: normal;
  667. border: 0px solid #dcdcdc;
  668. border-collapse: collapse;
  669. }
  670. #agenda_list .textnow {
  671. background-color: #fff;
  672. text-align: left;
  673. padding: 2px 10px;
  674. font-weight: normal;
  675. border: 0px solid #dcdcdc;
  676. border-collapse: collapse;
  677. }
  678. /* ---------------------------------------------------
  679. styles for the mini agenda
  680. -----------------------------------------------------*/
  681. #smallcalendar {
  682. width: 100%;
  683. margin: 0 auto;
  684. border: 1px solid #fff;
  685. border-collapse: collapse;
  686. }
  687. #smallcalendar .weekdays {
  688. background-color: #dcdcdc;
  689. text-align: center;
  690. font-size: 11px;
  691. font-weight: bold;
  692. border: 1px solid #fff;
  693. border-collapse: collapse;
  694. }
  695. #smallcalendar .days_week {
  696. background-color: #f5f5f5;
  697. text-align: center;
  698. font-size: 11px;
  699. border-collapse: collapse;
  700. }
  701. #smallcalendar .days_weekend {
  702. background-color: #e6e6e6;
  703. text-align: center;
  704. font-size: 11px;
  705. border: 1px solid #fff;
  706. border-collapse: collapse;
  707. }
  708. #smallcalendar .days_today {
  709. width: 12%;
  710. text-align: center;
  711. font-size: 11px;
  712. border: 1px solid #FA8500;
  713. border-collapse: collapse;
  714. background-color: #FFCA8D;
  715. }
  716. /* ---------------------------------------------------
  717. styles for the personal agenda
  718. -----------------------------------------------------*/
  719. .personal_agenda {
  720. color: #008000;
  721. }
  722. .personal_agenda a:link, .personal_agenda a:visited {
  723. color: #008000;
  724. }
  725. a.personal_agenda:link, a.personal_agenda:visited {
  726. color: #008000;
  727. }
  728. .personal_agenda a:hover, .personal_agenda a:hover {
  729. color: #666666;
  730. }
  731. a.personal_agenda:hover, a.personal_agenda:hover {
  732. color: #666666;
  733. }
  734. .myagendatoday {
  735. background-color: #FFCA8D;
  736. border-collapse: collapse;
  737. font-family: verdana, arial, helvetica, sans-serif;
  738. color: #CC3300;
  739. font-weight: bold;
  740. }
  741. .rounded_div_agenda {
  742. background: none repeat scroll 0 0 #FFFFFF;
  743. -webkit-border-radius: 6px;
  744. -opera-border-radius: 6px;
  745. -moz-border-radius: 6px;
  746. border-radius: 6px;
  747. -webkit-box-shadow: 0 2px 5px #C8C8C8;
  748. -opera-box-shadow: 0 2px 5px #C8C8C8;
  749. -moz-box-shadow: 0 2px 5px #C8C8C8;
  750. box-shadow: 0 2px 5px #C8C8C8;
  751. float: left;
  752. height: auto;
  753. margin: 2px 4px 15px;
  754. padding: 8px;
  755. width: 75%;
  756. }
  757. .agenda_day {
  758. float: left;
  759. width: 100%;
  760. background-color: #F8F9FF;
  761. color: #666666;
  762. line-height: 16px;
  763. overflow: hidden;
  764. margin-bottom: 5px;
  765. }
  766. .days_today .agenda_day {
  767. float: left;
  768. width: 100%;
  769. background-color: #FAD163;
  770. color: #666666;
  771. line-height: 16px;
  772. overflow: hidden;
  773. margin-bottom: 5px;
  774. }
  775. #agenda_list th {
  776. background-color: #F2F2F2;
  777. }
  778. #agenda_list .days_week {
  779. height: 100px;
  780. }
  781. /* -------------- DOCUMENT --------------*/
  782. #document_quota {
  783. margin: 15px;
  784. font-weight: bold;
  785. color: #006633;
  786. text-align: center;
  787. }
  788. /* Message and Social */
  789. .online_grid_item {
  790. float: left;
  791. margin: 10px;
  792. width: 100%;
  793. }
  794. .online_grid_element_0 {
  795. display: inline;
  796. float: left;
  797. height: 100px;
  798. overflow: hidden;
  799. width: 100px;
  800. }
  801. .online_grid_element_1, .online_grid_element_2 {
  802. font-size: 13px;
  803. float: left;
  804. margin: 25px 0px 0px 10px;
  805. width: 70%;
  806. }
  807. /* input values to crop the image: top, right, bottom, left */
  808. .social-home-users-online {
  809. width: 200px;
  810. margin: -28px 0 0 -50px;
  811. }
  812. .social-home-anonymous-online {
  813. width: 200px;
  814. }
  815. .menulist {
  816. margin: 0px;
  817. list-style: none;
  818. padding: 3px 15px;
  819. list-style-image: none;
  820. list-style-position: outside;
  821. list-style-type: none;
  822. }
  823. .menulist li {
  824. /* float:left; */
  825. /* margin-left:10px; */
  826. margin-bottom: 10px;
  827. display: list-item;
  828. }
  829. .menulist li {
  830. margin-top: 10px;
  831. }
  832. .group_social_item {
  833. float: left;
  834. width: 95%;
  835. }
  836. .group_social_sub_item {
  837. float: left;
  838. /* width:600px; */
  839. background-color: #E9F4FA;
  840. background-repeat: repeat-x;
  841. margin: 8px;
  842. padding: 5px;
  843. width: 100%;
  844. }
  845. .group_social_sub_item_highlight {
  846. background-color: #FFFFDD;
  847. }
  848. .message-group-content {
  849. float: right;
  850. width: 93%;
  851. line-height: 100%;
  852. }
  853. .message-group-date {
  854. font-style: italic;
  855. text-align: left;
  856. margin-top: 4px;
  857. }
  858. .message-reply-link {
  859. float: right;
  860. }
  861. .group_social_main_item {
  862. float: left;
  863. width: 600px;
  864. background-color: #fff;
  865. background-repeat: repeat-x;
  866. margin: 8px;
  867. padding: 5px;
  868. }
  869. .group_discussions_replies {
  870. background-color: #E9F4FA;
  871. background-repeat: repeat-x;
  872. border: 1px solid #D0E2EC;
  873. border-radius: 3px 3px 3px 3px;
  874. color: #999999;
  875. float: left;
  876. font-size: 0.8em;
  877. margin-right: 10px;
  878. overflow: hidden;
  879. padding: 13px;
  880. text-align: center;
  881. width: 47px;
  882. margin-bottom: 65px;
  883. }
  884. .group_discussions_replies span {
  885. display: block;
  886. font-size: 2em;
  887. }
  888. .group_discussions_info {
  889. width: 400px;
  890. height: 80px;
  891. overflow: hidden;
  892. width: 400px;
  893. }
  894. .group_social_grid {
  895. float: left;
  896. width: 100%;
  897. }
  898. .message-attach {
  899. float: left;
  900. }
  901. /** BUTTONS **/
  902. .left {
  903. float: left !important;
  904. }
  905. .right {
  906. float: right !important;
  907. }
  908. /* Nice buttons v2 */
  909. button.next.disabled {
  910. cursor: default;
  911. opacity: 0.65;
  912. }
  913. .round {
  914. -webkit-border-radius: 1em;
  915. -moz-border-radius: 1em;
  916. border-radius: 1em;
  917. }
  918. .bigger {
  919. font-size: 16px;
  920. font-weight: bold;
  921. padding: .8em 2em .62em;
  922. }
  923. .big {
  924. font-size: 14px;
  925. font-weight: bold;
  926. padding: .8em 2em .62em;
  927. }
  928. .medium {
  929. font-size: 12px;
  930. padding: .4em 1.5em .42em;
  931. }
  932. .small {
  933. font-size: 11px;
  934. padding: .2em 1em .275em;
  935. }
  936. .no_link {
  937. cursor: default;
  938. }
  939. .no_link:hover {
  940. cursor: default;
  941. }
  942. .no_link:active {
  943. cursor: default;
  944. }
  945. /* Note */
  946. .note {
  947. margin: 6px;
  948. font-size: 12px;
  949. line-height: 14px;
  950. font-family: verdana, arial, helvetica, sans-serif;
  951. background-color: #FFFF96;
  952. color: #666666;
  953. border: 1px solid #bbb;
  954. padding: 10px 10px 10px 10px;
  955. }
  956. .note b {
  957. margin: 10px 10px 5px 0px;
  958. }
  959. /* Breadcrumb */
  960. .breadcrumb .home {
  961. padding: 0px;
  962. height: 22px;
  963. }
  964. .breadcrumb .home img {
  965. float: left;
  966. }
  967. /* Warning and error messages to the user */
  968. .error {
  969. color: red;
  970. }
  971. .confirmation-message .right_link,
  972. .error-message .right_link,
  973. .normal-message .right_link,
  974. .warning-message .right_link {
  975. position: relative;
  976. right: 0;
  977. top: -6px;
  978. float: right;
  979. }
  980. .confirmation-message, .error-message, .normal-message, .warning-message {
  981. min-height: 15px;
  982. position: relative;
  983. margin-top: 5px;
  984. margin-bottom: 10px;
  985. -moz-border-radius: 10px;
  986. border-radius: 10px;
  987. border-width: 1px;
  988. border-style: solid;
  989. padding: 6px 12px;
  990. }
  991. .confirmation-message img, .error-message img, .normal-message img, .warning-message img {
  992. position: relative;
  993. margin-top: 10px;
  994. margin-bottom: 10px;
  995. float: left;
  996. }
  997. /* Categories courses*/
  998. #course-picture {
  999. position: absolute;
  1000. top: 8%;
  1001. left: 85%;
  1002. padding: 4px;
  1003. border: 1pt solid #ccc;
  1004. }
  1005. #categories-search {
  1006. text-align: center;
  1007. /*height:55px; */
  1008. float: left;
  1009. }
  1010. .course-block-main-item {
  1011. height: 45px;
  1012. padding: 5px 0px;
  1013. }
  1014. .categories-course-description {
  1015. padding-bottom: 10px;
  1016. }
  1017. .course-block-popularity {
  1018. width: 90px;
  1019. float: right;
  1020. font-size: x-small;
  1021. font-style: italic;
  1022. text-align: right;
  1023. background-color: #eeeeee;
  1024. min-height: 95px;
  1025. padding-right: 5px;
  1026. -moz-border-radius-topleft: 4px;
  1027. -moz-border-radius-topright: 4px;
  1028. -webkit-border-top-left-radius: 4px;
  1029. -webkit-border-top-right-radius: 4px;
  1030. border-top-left-radius: 4px;
  1031. border-top-right-radius: 4px;
  1032. -moz-box-shadow: 0 -1px 5px 2px #CCCCCC;
  1033. -Webkit-box-shadow: 0 -1px 5px 2px #CCCCCC;
  1034. box-shadow: 0 -1px 5px 2px #CCCCCC;
  1035. }
  1036. .course-block-popularity-score {
  1037. font-size: 3em;
  1038. text-align: center;
  1039. color: #000000;
  1040. padding-top: 10px;
  1041. text-shadow: gray 3px 3px 2px;
  1042. }
  1043. /* THEMATIC ADVANCE */
  1044. .thematic-postit {
  1045. width: 250px;
  1046. height: auto;
  1047. overflow: hidden;
  1048. float: right;
  1049. }
  1050. .thematic-postit-top {
  1051. background-image: url('../img/postit_top.png');
  1052. height: 38px;
  1053. }
  1054. .thematic-postit-top h3 {
  1055. margin: 20px 5px 10px 20px;
  1056. padding-top: 40px;
  1057. }
  1058. .thematic-postit-bottom {
  1059. background-image: url('../img/postit_bottom.png');
  1060. height: 40px;
  1061. }
  1062. .thematic-postit-center {
  1063. background-image: url('../img/postit_center.png');
  1064. height: auto;
  1065. margin-top: 0px;
  1066. margin-bottom: -16px;
  1067. padding: 28px 20px 0;
  1068. }
  1069. #titlethematic {
  1070. text-transform: uppercase;
  1071. }
  1072. /* ATTENDANCE */
  1073. div.attendance-calendar-add div.row div.formw, div.attendance-calendar-edit div.row div.formw {
  1074. float: left;
  1075. display: inline;
  1076. width: auto;
  1077. overflow: hidden;
  1078. margin-right: 2px;
  1079. margin-top: 5px;
  1080. }
  1081. .attendance-calendar-add div.row {
  1082. display: inline;
  1083. }
  1084. .attendance-calendar-edit div.row {
  1085. display: inline;
  1086. }
  1087. .attendance-calendar-row {
  1088. padding: 5px;
  1089. }
  1090. .attendance-faults-bar {
  1091. width: 90%;
  1092. background-color: none;
  1093. padding: 2px;
  1094. font-size: 120%;
  1095. font-weight: bold;
  1096. padding: 5px;
  1097. }
  1098. .attendance-users-table td {
  1099. height: 66px;
  1100. }
  1101. .attendance-calendar-table td {
  1102. height: 66px;
  1103. }
  1104. /**********************************************
  1105. * MESSAGE TOOL *
  1106. **********************************************/
  1107. #inbox-wrapper {
  1108. width: 100%;
  1109. }
  1110. #inbox {
  1111. height: auto;
  1112. margin-left: auto;
  1113. margin-right: auto;
  1114. overflow: hidden;
  1115. }
  1116. #outbox {
  1117. height: auto;
  1118. margin-left: auto;
  1119. margin-right: auto;
  1120. overflow: hidden;
  1121. }
  1122. #inbox-menu {
  1123. width: 150px;
  1124. float: left;
  1125. margin-right: 10px;
  1126. }
  1127. #inbox-menu ul {
  1128. list-style-image: none;
  1129. list-style-position: outside;
  1130. list-style-type: none;
  1131. margin: 0;
  1132. padding: 0px;
  1133. }
  1134. #inbox-menu ul li {
  1135. padding: 2px 0px;
  1136. }
  1137. #message-reply-link {
  1138. float: right;
  1139. }
  1140. .message-item {
  1141. -moz-background-clip: border;
  1142. -moz-background-inline-policy: continuous;
  1143. -moz-background-origin: padding;
  1144. -moz-border-radius-bottomleft: 8px;
  1145. -moz-border-radius-bottomright: 8px;
  1146. -moz-border-radius-topleft: 8px;
  1147. -moz-border-radius-topright: 8px;
  1148. background: #F5F5F5 none repeat scroll 0 0;
  1149. margin: 0 0 5px;
  1150. padding: 10px;
  1151. }
  1152. .message-topic {
  1153. -moz-background-clip: border;
  1154. -moz-background-inline-policy: continuous;
  1155. -moz-background-origin: padding;
  1156. -moz-border-radius-bottomleft: 8px;
  1157. -moz-border-radius-bottomright: 8px;
  1158. -moz-border-radius-topleft: 8px;
  1159. -moz-border-radius-topright: 8px;
  1160. background: #E6EEFB none repeat scroll 0 0;
  1161. margin: 0 0 5px;
  1162. padding: 10px;
  1163. }
  1164. .message-group-title-topic {
  1165. font-size: 180%;
  1166. margin: 5px 0px 5px 0px;
  1167. }
  1168. .message-group-title {
  1169. font-size: 120%;
  1170. }
  1171. .message-group-author {
  1172. margin: 0px 5px 5px 0px;
  1173. float: left;
  1174. }
  1175. .message-group-content {
  1176. margin: 0px 0px 8px 0px;
  1177. }
  1178. .message-group-date {
  1179. color: #999;
  1180. width: 100%;
  1181. font-size: 98%;
  1182. }
  1183. .view-message-content {
  1184. line-height: 150%;
  1185. font-size: 110%;
  1186. }
  1187. .message_view_table {
  1188. cellspacing: 0;
  1189. cellpadding: 0;
  1190. background-color: #dbeaf5;
  1191. border: 0;
  1192. border-collapse: collapse;
  1193. width: 100%;
  1194. }
  1195. .message_view_table th {
  1196. padding-right: 12px;
  1197. border: 1px solid gray;
  1198. background-color: #f0f0f0;
  1199. }
  1200. .message-select-box {
  1201. float: left;
  1202. display: inline;
  1203. position: absolute;
  1204. margin-top: 23px;
  1205. margin-left: 20px;
  1206. }
  1207. /* styles from the my.profile.php file */
  1208. .message-content {
  1209. /* float:right;
  1210. background:#FFF;
  1211. padding: 10px 0 0 5px;
  1212. width:125px;
  1213. position:relative;*/
  1214. }
  1215. .message-content .message-delete {
  1216. position: absolute;
  1217. top: 10px;
  1218. right: 10px;
  1219. cursor: pointer;
  1220. }
  1221. .message-content-internal {
  1222. display: inline;
  1223. margin: 20px auto;
  1224. background: #F5E38E;
  1225. border: 2px solid #EBCA4F;
  1226. padding: 10px;
  1227. width: 100px;
  1228. position: relative;
  1229. margin-top: 150px;
  1230. margin-right: -100px;
  1231. }
  1232. .message-title {
  1233. font-size: 12px;
  1234. }
  1235. .message-body {
  1236. padding: 0 0 11px;
  1237. color: #333;
  1238. font-size: 100%;
  1239. }
  1240. .message-link {
  1241. color: #ff8400;
  1242. }
  1243. .message-view {
  1244. float: right;
  1245. margin: 20px auto;
  1246. background: #F5E38E;
  1247. border: 2px solid #EBCA4F;
  1248. padding: 10px;
  1249. width: 100px;
  1250. position: relative;
  1251. margin-top: 115px;
  1252. margin-right: -100px;
  1253. }
  1254. .message-content-table {
  1255. background-color: white;
  1256. border: 1px solid black;
  1257. position: absolute;
  1258. width: 200px;
  1259. height: 60px;
  1260. z-index: 3;
  1261. visibility: hidden;
  1262. top: 85px;
  1263. left: 10px;
  1264. margin: 0px;
  1265. padding: 0px;
  1266. }
  1267. #message {
  1268. margin: 0 auto;
  1269. text-align: center;
  1270. }
  1271. #message select {
  1272. margin: 10px 0;
  1273. width: 220px;
  1274. }
  1275. #message textarea {
  1276. margin: 10px 0;
  1277. }
  1278. #message td {
  1279. padding: 4px;
  1280. }
  1281. .message-top-title {
  1282. float: left;
  1283. margin-top: 1px;
  1284. margin-bottom: 1px;
  1285. background-color: #F2F2F2;
  1286. width: 600px;
  1287. border-bottom: 1px solid #CCCCCC;
  1288. margin-left: 5px;
  1289. }
  1290. .message-bottom-title {
  1291. height: 22px;
  1292. float: left;
  1293. margin-top: 1px;
  1294. margin-bottom: 1px;
  1295. background-color: #F2F2F2;
  1296. width: 600px;
  1297. border-bottom: 1px solid #CCCCCC;
  1298. }
  1299. .message-content-body-left {
  1300. float: left;
  1301. width: 30%;
  1302. }
  1303. .message-content-body-right {
  1304. float: right;
  1305. text-align: left;
  1306. width: 60%;
  1307. }
  1308. .message-body-title {
  1309. float: right;
  1310. margin-top: 1px;
  1311. margin-bottom: 5px;
  1312. border-bottom: 1px solid #CCCCCC;
  1313. border-collapse: collapse;
  1314. }
  1315. .message-image-info {
  1316. float: left;
  1317. margin-top: 10px;
  1318. margin-bottom: 10px;
  1319. margin-left: 10px;
  1320. text-align: left;
  1321. margin-right: 20px;
  1322. }
  1323. .message-content-body-right dd {
  1324. color: #333399;
  1325. border-bottom: 1px solid #CCCCCC;
  1326. height: 20px;
  1327. text-decoration: none;
  1328. outline-style: none;
  1329. background: #ffffff;
  1330. }
  1331. .message-content-body-right:hover {
  1332. }
  1333. a.unread {
  1334. font-weight: bold;
  1335. }
  1336. /*SOCIAL TOOL*/
  1337. .clip-wrapper {
  1338. position: relative;
  1339. width: 100px;
  1340. height: 100px;
  1341. top: -1px;
  1342. left: -1px;
  1343. }
  1344. .clip_vertical {
  1345. position: absolute;
  1346. clip: rect(0px 218px 185px 0px);
  1347. top: -50px;
  1348. left: -32px;
  1349. -webkit-transform: scale(0.6);
  1350. -moz-transform: scale(0.6);
  1351. -o-transform: scale(0.6);
  1352. }
  1353. .clip_horizontal {
  1354. position: absolute;
  1355. clip: rect(0px 218px 155px 0px);
  1356. top: -25px;
  1357. left: -48px;
  1358. -webkit-transform: scale(0.6);
  1359. -moz-transform: scale(0.6);
  1360. -o-transform: scale(0.6);
  1361. }
  1362. .social-plugin-item {
  1363. float: left;
  1364. width: 50%;
  1365. background-color: #ccc;
  1366. margin: 0px;
  1367. }
  1368. #social-plugins {
  1369. float: left;
  1370. background-color: #f00;
  1371. width: 100%;
  1372. margin: 0px;
  1373. padding: 2px;
  1374. }
  1375. .social-profile-extended {
  1376. width: 320px;
  1377. overflow: hidden;
  1378. }
  1379. div.image-social-content {
  1380. float: left;
  1381. /*border:1px dotted #ccc;*/
  1382. margin: 2px;
  1383. padding: 8px 4px 4px 4px;
  1384. background: #ffffff;
  1385. height: 105px;
  1386. width: 82px;
  1387. z-index: 5;
  1388. cursor: pointer;
  1389. position: relative;
  1390. overflow: hidden;
  1391. }
  1392. div.image-social-content span {
  1393. overflow: hidden;
  1394. display: block;
  1395. height: 75px;
  1396. }
  1397. div.image-social-content img {
  1398. vertical-align: middle;
  1399. }
  1400. div.image-social-content center.friend {
  1401. overflow: hidden;
  1402. height: 30px;
  1403. }
  1404. .image-social-content .image-delete {
  1405. position: absolute;
  1406. top: 1px;
  1407. right: 1px;
  1408. cursor: pointer;
  1409. }
  1410. .social-info {
  1411. background: #B8C8DC;
  1412. color: #4475B0;
  1413. font-size: 12px;
  1414. font-weight: bold;
  1415. }
  1416. .social-display-image {
  1417. float: right;
  1418. margin-top: -130px;
  1419. margin-right: 5px;
  1420. }
  1421. .social-search-image {
  1422. color: #000033;
  1423. margin-top: 2px;
  1424. width: 200px;
  1425. }
  1426. .social-subtitle-search {
  1427. background: #ffffff;
  1428. border-top: 1px #9DACBF solid;
  1429. border-bottom: 1px #9DACBF solid;
  1430. }
  1431. .social-align-box {
  1432. text-align: left;
  1433. float: left;
  1434. }
  1435. .social-header {
  1436. margin-bottom: 8px;
  1437. }
  1438. #social-content {
  1439. width: 100%;
  1440. height: auto;
  1441. overflow: hidden;
  1442. margin-left: auto;
  1443. margin-right: auto;
  1444. }
  1445. #social-content-right {
  1446. height: auto;
  1447. margin-left: 190px;
  1448. overflow: hidden;
  1449. width: 75%;
  1450. }
  1451. .social-content-image {
  1452. margin-bottom: 10px;
  1453. margin-top: 2px;
  1454. overflow: hidden;
  1455. }
  1456. #social-content-left {
  1457. display: block;
  1458. float: left;
  1459. height: auto;
  1460. min-height: 300px;
  1461. overflow: hidden;
  1462. width: 180px;
  1463. }
  1464. .social-content-description {
  1465. background: #ECE9D8;
  1466. }
  1467. .social-content-body {
  1468. background: #ffffff;
  1469. }
  1470. .social-content-table {
  1471. border-top: 1px #9DACBF solid;
  1472. border-left: 1px #9DACBF solid;
  1473. border-right: 1px #9DACBF solid;
  1474. border-bottom: 1px #9DACBF solid;
  1475. }
  1476. .social-profile-info {
  1477. width: 100%;
  1478. }
  1479. /* general layout of the profile page */
  1480. #social-profile-wrapper {
  1481. width: 100%;
  1482. text-align: left;
  1483. margin: 0 auto;
  1484. float: left;
  1485. }
  1486. #social-profile-container {
  1487. /* width: 705px; */
  1488. }
  1489. #social-profile-left {
  1490. float: left;
  1491. width: 22%;
  1492. }
  1493. #social-profile-content {
  1494. float: right;
  1495. width: 47%;
  1496. margin-left: 4px;
  1497. }
  1498. #social-profile-right {
  1499. float: right;
  1500. width: 30%;
  1501. margin-left: 4px;
  1502. }
  1503. /* SOCIAL MENU VERTICAL */
  1504. .social-menu {
  1505. width: 100%;
  1506. height: auto;
  1507. }
  1508. .social-menu-sub-level {
  1509. margin-left: 20px;
  1510. }
  1511. /* BOX SHARED PROFILE */
  1512. .social-menu-groups {
  1513. border-top: 1px solid #ddd;
  1514. margin-top: 2px;
  1515. }
  1516. .social-menu-groups li {
  1517. padding: 5px;
  1518. }
  1519. .social-menu-groups li a {
  1520. margin-left: 6px;
  1521. }
  1522. .social_menu_items ul li {
  1523. padding: 5px;
  1524. }
  1525. .social_menu_items ul li a {
  1526. padding-left: 6px;
  1527. }
  1528. .social_menu_option {
  1529. color: #999999;
  1530. font-size: 9px;
  1531. font-weight: bold;
  1532. margin-top: 12px;
  1533. margin-bottom: 10px;
  1534. }
  1535. .social-friend-container {
  1536. width: 100%;
  1537. overflow: hidden;
  1538. }
  1539. .shared_profile_mygroups_grid_container {
  1540. width: 100%;
  1541. overflow: hidden;
  1542. }
  1543. .shared_profile_mygroups_grid_item {
  1544. width: 42%;
  1545. float: left;
  1546. height: 140px;
  1547. margin: 20px;
  1548. }
  1549. .social-menu-group-member {
  1550. float: left;
  1551. height: 120px;
  1552. margin: 5px;
  1553. overflow: hidden;
  1554. padding: 2px;
  1555. width: 76px;
  1556. }
  1557. .box_shared_profile_group_title {
  1558. border-bottom: 1pt dotted #000;
  1559. padding: 5px;
  1560. vertical-align: middle;
  1561. font-size: 12pt;
  1562. font-weight: bold;
  1563. margin-bottom: 5px
  1564. }
  1565. .box_shared_profile_group_description {
  1566. height: 100px;
  1567. margin-left: 65px;
  1568. }
  1569. .box_shared_profile_group_image {
  1570. height: 80px;
  1571. width: 60px;
  1572. float: left;
  1573. }
  1574. .box_shared_profile_group_actions {
  1575. text-align: right;
  1576. }
  1577. .social-groups-text1 {
  1578. font-size: 12px;
  1579. color: #669;
  1580. }
  1581. .social-groups-text2 {
  1582. font-size: 12px;
  1583. color: #686868;
  1584. font-weight: bold;
  1585. }
  1586. .social-groups-text3 {
  1587. font-size: 12px;
  1588. color: #000;
  1589. font-weight: bold;
  1590. text-transform: capitalize;
  1591. margin-top: 5px;
  1592. }
  1593. .social-groups-text4 {
  1594. font-size: 12px;
  1595. color: #666666;
  1596. }
  1597. .social-groups-image {
  1598. /* border: 2px solid #cac9c9; */
  1599. }
  1600. .social-groups-home-title {
  1601. border-top: 1px solid #E2E2E2;
  1602. padding: 2px;
  1603. margin-bottom: 5px;
  1604. font-weight: bold;
  1605. background: #F2F2F2;
  1606. }
  1607. .social-home-users-online {
  1608. border: 3px solid #E6E6E6;
  1609. }
  1610. #social-content-online {
  1611. margin-bottom: 5px;
  1612. margin-top: 2px;
  1613. padding: 1px;
  1614. }
  1615. #social-group-details {
  1616. margin-bottom: 20px;
  1617. }
  1618. .social-group-details-info span {
  1619. color: #777;
  1620. }
  1621. .social-group-details-info {
  1622. padding: 2px 0px 2px 0px;
  1623. }
  1624. .social-background-content {
  1625. z-index: 5;
  1626. text-align: center;
  1627. }
  1628. .social-background-content .hidden_message {
  1629. cursor: pointer;
  1630. position: absolute;
  1631. top: 0px;
  1632. right: 0px;
  1633. }
  1634. .hidden_message {
  1635. background-color: #5A5A5A;
  1636. padding: 2px;
  1637. margin: 0px;
  1638. }
  1639. .hidden_message a {
  1640. color: #fff !important;
  1641. /* text-decoration: underline; */
  1642. }
  1643. #social-forum-main-title {
  1644. font-size: 130%;
  1645. font-weight: bold;
  1646. padding: 0px 8px 0px 8px;
  1647. }
  1648. #social-forum-title {
  1649. font-size: 130%;
  1650. font-weight: bold;
  1651. padding: 0px 8px 0px 8px;
  1652. }
  1653. #social-thread {
  1654. /*-moz-border-radius-bottomleft:5px;
  1655. -moz-border-radius-bottomright:5px; */
  1656. -moz-border-radius-topleft: 5px;
  1657. -moz-border-radius-topright: 5px;
  1658. border: 1px solid #E1E1E0;
  1659. background-color: #E1E1E0;
  1660. padding: 8px;
  1661. font-size: 110%;
  1662. font-weight: bold;
  1663. }
  1664. #social-post {
  1665. -moz-border-radius-bottomleft: 5px;
  1666. -moz-border-radius-bottomright: 5px;
  1667. /* -moz-border-radius-topleft:5px;
  1668. -moz-border-radius-topright:5px; */
  1669. border: 1px solid #E1E1E0;
  1670. background-color: #ECECEB;
  1671. padding: 12px;
  1672. }
  1673. /* GROUP TOOL */
  1674. #group_description {
  1675. margin: 10px 0px 10px 0px;
  1676. }
  1677. #group_privacy {
  1678. margin: 10px 0px 10px 0px;
  1679. }
  1680. #group_permissions {
  1681. -moz-background-clip: border;
  1682. -moz-background-inline-policy: continuous;
  1683. -moz-background-origin: padding;
  1684. -moz-border-radius-bottomleft: 8px;
  1685. -moz-border-radius-bottomright: 8px;
  1686. -moz-border-radius-topleft: 8px;
  1687. -moz-border-radius-topright: 8px;
  1688. background: #EEE none repeat scroll 0 0;
  1689. margin: 20px 0px 20px 0px;
  1690. }
  1691. #group_permissions ul {
  1692. list-style-image: none;
  1693. list-style-position: outside;
  1694. list-style-type: none;
  1695. margin: 0;
  1696. padding: 0;
  1697. }
  1698. #group_permissions ul li {
  1699. margin: 10px 0px 10px 5px;
  1700. }
  1701. /* Groups boxes */
  1702. .groups_grid_container {
  1703. width: 100%;
  1704. }
  1705. .groups_grid_item {
  1706. width: 80px;
  1707. float: left;
  1708. margin: 5px;
  1709. }
  1710. .groups_grid_element_0 {
  1711. width: 100px;
  1712. float: left;
  1713. text-align: center;
  1714. margin-bottom: 5px;
  1715. }
  1716. .groups_grid_element_1 {
  1717. width: 100px;
  1718. float: left;
  1719. text-align: left;
  1720. margin-bottom: 5px;
  1721. }
  1722. .groups_grid_element_2 {
  1723. width: 150px;
  1724. float: left;
  1725. }
  1726. /*MY GROUPS*/
  1727. .mygroups_grid_item {
  1728. border-bottom: 1px solid #EAEAEA;
  1729. float: left;
  1730. height: 70px;
  1731. margin: 0 8px 15px 15px;
  1732. padding: 16px 12px 40px 0px;
  1733. width: 600px;
  1734. }
  1735. .topic_div {
  1736. width: 620px;
  1737. border-bottom: 1px solid #EAEAEA;
  1738. margin-bottom: 20px;
  1739. height: 96px;
  1740. }
  1741. .box_description_group_member {
  1742. color: #999999;
  1743. font-size: 10px;
  1744. }
  1745. .mygroups_grid_element_1 {
  1746. width: 600px;
  1747. height: 100px;
  1748. overflow: hidden;
  1749. }
  1750. .box_description_group_title h2 {
  1751. margin-bottom: 4px;
  1752. margin-top: 0px;
  1753. }
  1754. .box_description_group_title {
  1755. float: right;
  1756. width: 530px;
  1757. }
  1758. .box_description_group_content {
  1759. float: right;
  1760. width: 530px;
  1761. margin-top: 5px;
  1762. /* height:45px;*/
  1763. font-family: Verdana, Geneva, sans-serif;
  1764. font-size: 12px;
  1765. color: #666666;
  1766. }
  1767. .box_description_group_actions {
  1768. float: right;
  1769. width: 530px;
  1770. text-align: right;
  1771. margin-top: 4px;
  1772. margin-right: 4px;
  1773. }
  1774. /*
  1775. textarea {
  1776. border:1px solid #CCCCCC;
  1777. padding:5px;
  1778. -moz-border-radius:5px;
  1779. -webkit-border-radius:5px;
  1780. border-radius:5px;
  1781. color:#666666;
  1782. }
  1783. */
  1784. /*
  1785. select {
  1786. color:#555;
  1787. border: 1px solid #CCC;
  1788. padding: 4px;
  1789. background-color: #F3F3F3;
  1790. font-size: 12px;
  1791. -moz-border-radius:5px;
  1792. -webkit-border-radius:5px;
  1793. border-radius:5px;
  1794. }*/
  1795. /* Fixes the FB input*/
  1796. input.maininput:focus {
  1797. box-shadow: 0 0 0px #fff;
  1798. border: none;
  1799. }
  1800. /* Big icons course home page styles */
  1801. #course_tools .big_icon {
  1802. padding: 10px;
  1803. text-align: center;
  1804. }
  1805. #course_tools .content {
  1806. text-align: center;
  1807. margin-bottom: 20px;
  1808. }
  1809. /* session.php */
  1810. #session_course_list .big_icon {
  1811. padding: 10px;
  1812. text-align: center;
  1813. }
  1814. #session_course_list .content {
  1815. text-align: center;
  1816. margin-bottom: 20px;
  1817. }
  1818. .big_icon img {
  1819. padding: 5px;
  1820. -moz-border-radius: 10px;
  1821. -border-radius: 10px;
  1822. -webkit-border-radius: 10px;
  1823. border-radius: 10px;
  1824. -webkit-box-shadow: 0 4px 8px #C8C8C8;
  1825. -opera-box-shadow: 0 4px 8px #C8C8C8;
  1826. -moz-box-shadow: 0 4px 8px #C8C8C8;
  1827. box-shadow: 0 4px 8px #C8C8C8;
  1828. }
  1829. .big_icon img:hover {
  1830. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  1831. -opera-box-shadow: 0 4px 18px #C8C8C8;
  1832. -moz-box-shadow: 0 4px 18px #C8C8C8;
  1833. box-shadow: 0 4px 18px #C8C8C8;
  1834. }
  1835. .courseadminview .big_icon a {
  1836. font-size: 12px;
  1837. }
  1838. /* Fixes the administration block section */
  1839. .admin_section div {
  1840. margin: 5px 0 14px 25px;
  1841. }
  1842. .rounded_div {
  1843. background: none repeat scroll 0 0 #FFFFFF;
  1844. border: 1px solid #E5E5E5;
  1845. -webkit-border-radius: 11px;
  1846. -opera-border-radius: 11px;
  1847. -moz-border-radius: 11px;
  1848. border-radius: 11px;
  1849. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  1850. -opera-box-shadow: 0 4px 18px #C8C8C8;
  1851. -moz-box-shadow: 0 4px 18px #C8C8C8;
  1852. box-shadow: 0 4px 18px #C8C8C8;
  1853. float: left;
  1854. height: auto;
  1855. margin: 10px 8px 15px 15px;
  1856. padding: 18px;
  1857. }
  1858. /* LP tool*/
  1859. #lp_overview .thumbnail {
  1860. text-align: center;
  1861. }
  1862. .lp_resource {
  1863. padding: 5px 10px;
  1864. list-style-type: none;
  1865. margin: 0;
  1866. padding: 0;
  1867. float: left;
  1868. width: 100%;
  1869. }
  1870. .lp_resource_element, .lp_resource_element_no_link {
  1871. background-image: -moz-linear-gradient(top, #fefefe, #eee);
  1872. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fdfdfd), color-stop(1, #eee));
  1873. border: 1px solid #CCCCCC;
  1874. color: #444444;
  1875. cursor: pointer;
  1876. font-weight: bold;
  1877. text-decoration: none;
  1878. text-shadow: 0 1px 1px #F6F6F6;
  1879. margin: 5px;
  1880. padding: 5px;
  1881. list-style: none outside none;
  1882. }
  1883. .lp_resource_element_new a {
  1884. font-size: 14px;
  1885. }
  1886. .doc_resource {
  1887. margin: 6px;
  1888. }
  1889. table.lp_build td.tree {
  1890. border: none;
  1891. }
  1892. #resource_tab {
  1893. min-height: 380px;
  1894. }
  1895. div.system_announcement {
  1896. background-color: #EEEEEE;
  1897. }
  1898. .RequirementHeading, .RequirementText, .RequirementContent {
  1899. margin-top: 12px;
  1900. line-height: 18px;
  1901. }
  1902. #toolshortcuts_horizontal {
  1903. padding: 0px 20px 2px 0px;
  1904. clear: right;
  1905. margin-left: auto;
  1906. margin-right: auto;
  1907. text-align: right;
  1908. width: 98%;
  1909. }
  1910. #toolshortcuts_vertical {
  1911. padding: 0px 0px 2px 0px;
  1912. clear: right;
  1913. margin-left: auto;
  1914. margin-right: auto;
  1915. text-align: right;
  1916. width: 98%;
  1917. }
  1918. div.admin_section {
  1919. min-height: 260px;
  1920. }
  1921. .admin_section li {
  1922. padding: 2px 0px 2px;
  1923. }
  1924. div.admin_section h4 {
  1925. font-size: 16px;
  1926. letter-spacing: -1px;
  1927. }
  1928. .actions span {
  1929. margin-right: 0px;
  1930. }
  1931. #courseintro_empty {
  1932. float: right;
  1933. margin: 2px auto;
  1934. padding: 0;
  1935. }
  1936. /*PROFILE*/
  1937. .profile_grid_container {
  1938. width: 100%;
  1939. }
  1940. .profile_grid_item {
  1941. border: 1px dotted #CCCCCC;
  1942. float: left;
  1943. height: 90px;
  1944. margin: 5px;
  1945. padding: 5px;
  1946. width: 270px;
  1947. }
  1948. .profile_grid_element_0 {
  1949. width: 100px;
  1950. float: left;
  1951. text-align: center;
  1952. margin-bottom: 5px;
  1953. }
  1954. .profile_grid_element_1 {
  1955. width: 170px;
  1956. float: left;
  1957. text-align: left;
  1958. margin-bottom: 1px;
  1959. }
  1960. /* pagination grid sortable */
  1961. .sub_header {
  1962. width: 100%
  1963. }
  1964. .grid_selectbox {
  1965. float: left;
  1966. width: 35%
  1967. }
  1968. .grid_title {
  1969. float: left;
  1970. width: 30%;
  1971. text-align: center
  1972. }
  1973. .grid_nav {
  1974. float: left;
  1975. width: 35%;
  1976. text-align: right
  1977. }
  1978. /* Groups boxes */
  1979. .group_invitation_grid_container {
  1980. width: 100%;
  1981. }
  1982. .group_invitation_grid_item {
  1983. border: 1px dotted #CCCCCC;
  1984. float: left;
  1985. height: 85px;
  1986. margin: 8px;
  1987. padding: 5px;
  1988. width: 300px;
  1989. }
  1990. .group_invitation_grid_element_0 {
  1991. width: 100px;
  1992. float: left;
  1993. text-align: center;
  1994. margin-bottom: 5px;
  1995. }
  1996. .group_invitation_grid_element_1 {
  1997. width: 100px;
  1998. float: left;
  1999. text-align: left;
  2000. margin-bottom: 5px;
  2001. }
  2002. .group_invitation_grid_element_2 {
  2003. width: 150px;
  2004. float: left;
  2005. }
  2006. /* home group boxes */
  2007. .home_group_grid_container {
  2008. margin-bottom: 70px;
  2009. height: 65px;
  2010. }
  2011. .home_group_grid_element_1 {
  2012. font-family: Verdana, Geneva, sans-serif;
  2013. font-size: 12px;
  2014. color: #686868;
  2015. font-weight: bold;
  2016. margin: 2px;
  2017. padding: 2px;
  2018. }
  2019. .home_group_grid_element_2 {
  2020. float: right;
  2021. width: 80%;
  2022. height: 45px;
  2023. font-family: Verdana, Geneva, sans-serif;
  2024. font-size: 12px;
  2025. color: #666666;
  2026. }
  2027. /*INVITATION IN PROFILE*/
  2028. .invitation_profile_grid_container {
  2029. width: 100%;
  2030. }
  2031. .invitation_profile_grid_item {
  2032. border: 1px dotted #CCCCCC;
  2033. float: left;
  2034. height: 110px;
  2035. margin: 5px;
  2036. padding: 5px;
  2037. width: 100px;
  2038. }
  2039. .invitation_profile_grid_element_0 {
  2040. width: 100px;
  2041. float: left;
  2042. text-align: center;
  2043. margin-bottom: 5px;
  2044. }
  2045. .invitation_profile_grid_element_0 img {
  2046. width: 50px;
  2047. height: 50px;
  2048. border: 3px solid #E6E6E6;
  2049. }
  2050. .invitation_profile_grid_element_2 {
  2051. width: 100px;
  2052. float: left;
  2053. text-align: center;
  2054. }
  2055. .invitation_profile_grid_element_3 {
  2056. width: 100px;
  2057. float: left;
  2058. text-align: center;
  2059. }
  2060. /* User boxes */
  2061. .search_users_grid_container {
  2062. width: 100%;
  2063. }
  2064. .search_users_grid_item {
  2065. width: 400px;
  2066. height: 90px;
  2067. border: 1px dotted #ccc;
  2068. float: left;
  2069. padding: 5px;
  2070. margin: 8px;
  2071. }
  2072. .search_users_grid_element_0 {
  2073. width: 100px;
  2074. float: left;
  2075. text-align: center;
  2076. margin-bottom: 5px;
  2077. }
  2078. .search_users_grid_element_1 {
  2079. width: 100px;
  2080. float: left;
  2081. text-align: center;
  2082. margin-bottom: 5px;
  2083. }
  2084. .search_users_grid_element_2 {
  2085. width: 150px;
  2086. float: left;
  2087. }
  2088. .search_users_grid_selectbox {
  2089. width: 50%;
  2090. float: left;
  2091. }
  2092. .search_users_grid_title {
  2093. width: 30%;
  2094. float: left;
  2095. }
  2096. .search_users_grid_nav {
  2097. float: right;
  2098. }
  2099. /*WAITING USER*/
  2100. .waiting_user_grid_container {
  2101. width: 100%;
  2102. }
  2103. .waiting_user_grid_item {
  2104. width: 500px;
  2105. height: 120px;
  2106. border: 1px dotted #ccc;
  2107. float: left;
  2108. padding: 5px;
  2109. margin: 5px;
  2110. }
  2111. .waiting_user_grid_element_0 {
  2112. width: 100px;
  2113. height: 90px;
  2114. float: left;
  2115. text-align: center;
  2116. margin-bottom: 5px;
  2117. padding-top: 15px;
  2118. }
  2119. .waiting_user_grid_element_1 {
  2120. width: 400px;
  2121. float: left;
  2122. text-align: left;
  2123. margin-bottom: 5px
  2124. }
  2125. .waiting_user_grid_element_2 {
  2126. width: 400px;
  2127. float: left;
  2128. text-align: justify;
  2129. margin-bottom: 5px
  2130. }
  2131. .waiting_user_grid_element_5 {
  2132. width: 100%;
  2133. text-align: left;
  2134. }
  2135. .waiting_user_grid_element_6 {
  2136. width: 100%;
  2137. text-align: left;
  2138. }
  2139. /*LIST MEMBERS*/
  2140. .list_members_grid_container {
  2141. width: 100%;
  2142. }
  2143. .list_members_grid_item {
  2144. width: 105px;
  2145. height: 150px;
  2146. border: 1px dotted #ccc;
  2147. float: left;
  2148. padding: 5px;
  2149. margin: 8px;
  2150. }
  2151. .list_members_grid_element_0 {
  2152. width: 100px;
  2153. float: left;
  2154. text-align: center;
  2155. margin-bottom: 5px;
  2156. }
  2157. .list_members_grid_element_0 img {
  2158. width: 50px;
  2159. height: 50px;
  2160. border: 3px solid #E6E6E6;
  2161. }
  2162. .list_members_grid_element_2 {
  2163. width: 100px;
  2164. float: left;
  2165. text-align: center;
  2166. margin-bottom: 5px;
  2167. }
  2168. .list_members_grid_element_3 {
  2169. width: 100px;
  2170. float: left;
  2171. text-align: center;
  2172. margin-bottom: 5px;
  2173. }
  2174. .list_members_grid_element_5 {
  2175. width: 100%;
  2176. text-align: center;
  2177. }
  2178. /*SEARCH USER*/
  2179. .search_user_grid_container {
  2180. width: 100%;
  2181. }
  2182. .search_user_grid_item {
  2183. width: 100px;
  2184. height: 100px;
  2185. border: 1px dotted #ccc;
  2186. float: left;
  2187. padding: 5px;
  2188. margin: 5px;
  2189. overflow: hidden;
  2190. }
  2191. .search_user_grid_element_0 {
  2192. width: 100px;
  2193. float: left;
  2194. text-align: center;
  2195. margin-bottom: 5px;
  2196. }
  2197. .search_user_grid_element_0 img {
  2198. width: 50px;
  2199. height: 50px;
  2200. border: 2px solid #E6E6E6;
  2201. }
  2202. .search_user_grid_element_1 {
  2203. width: 100%;
  2204. text-align: center;
  2205. }
  2206. .search_user_grid_element_2 {
  2207. width: 100%;
  2208. text-align: center;
  2209. }
  2210. .search_user_grid_element_3 {
  2211. width: 100%;
  2212. text-align: center;
  2213. }
  2214. /*SEARCH GROUP*/
  2215. .search_group_grid_item {
  2216. float: left;
  2217. width: 345px;
  2218. height: 165px;
  2219. margin-top: 20px;
  2220. }
  2221. .search_group_grid_container {
  2222. margin-top: 0px;
  2223. }
  2224. .search_group_grid_element_1 {
  2225. width: 330px;
  2226. height: 165px;
  2227. padding-left: 10px;
  2228. padding-right: 10px;
  2229. background-repeat: repeat-y;
  2230. overflow: hidden;
  2231. }
  2232. /* chosen javascript checkbox select width fix */
  2233. .chzn-select {
  2234. min-width: 173px;
  2235. }
  2236. .lp_tree {
  2237. padding: 15px;
  2238. }
  2239. #lp_item_list {
  2240. margin: 0px;
  2241. }
  2242. #lp_item_list, #lp_item_list li {
  2243. list-style-type: none;
  2244. /* float:left;*/
  2245. }
  2246. #lp_item_list .active {
  2247. border: 2px dotted #BDB76B;
  2248. }
  2249. #lp_item_list ul, #lp_item_list li {
  2250. /* float:left;*/
  2251. width: 100%;
  2252. }
  2253. #lp_item_list .item_data {
  2254. padding: 5px 0px 5px 0px;
  2255. /* float:left;*/
  2256. }
  2257. #lp_item_list .item {
  2258. border: none;
  2259. }
  2260. #lp_item_list .empty {
  2261. height: 5px;
  2262. }
  2263. #question_list .ui-state-highlight {
  2264. height: 80px;
  2265. }
  2266. .ui-state-highlight {
  2267. height: 25px;
  2268. }
  2269. #question_list .header_operations {
  2270. height: 40px;
  2271. margin-bottom: 5px;
  2272. }
  2273. .question-list-description-block {
  2274. margin-bottom: 10px !important;
  2275. margin-top: -6px !important;
  2276. }
  2277. .thematic_advance_content {
  2278. padding: 10px;
  2279. }
  2280. .thematic_advance_actions {
  2281. width: 100px;
  2282. }
  2283. .document_preview_container {
  2284. -webkit-border-radius: 6px;
  2285. -opera-border-radius: 6px;
  2286. -moz-border-radius: 6px;
  2287. border-radius: 6px;
  2288. -webkit-box-shadow: 0 2px 5px #C8C8C8;
  2289. -opera-box-shadow: 0 2px 5px #C8C8C8;
  2290. -moz-box-shadow: 0 2px 5px #C8C8C8;
  2291. box-shadow: 0 2px 5px #C8C8C8;
  2292. background-color: #F9F9F9;
  2293. position: absolute;
  2294. z-index: 20;
  2295. margin: 5px;
  2296. padding: 5px;
  2297. width: 400px;
  2298. height: 280px;
  2299. overflow-y: auto;
  2300. }
  2301. #course_settings h3 img {
  2302. margin-left: 25px;
  2303. }
  2304. .document_preview_container {
  2305. font-size: 12px !important;
  2306. color: #111 ! important;
  2307. }
  2308. /* Exercise comment*/
  2309. #comments {
  2310. position: absolute;
  2311. left: 795px;
  2312. top: 0px;
  2313. width: 200px;
  2314. height: 75px;
  2315. z-index: 1;
  2316. }
  2317. #questions {
  2318. width: 40%;
  2319. height: 50px;
  2320. float: left;
  2321. padding: 5px;
  2322. }
  2323. .question_item {
  2324. height: 50px;
  2325. padding: 5px;
  2326. margin: 10px 0px 10px 0px;
  2327. }
  2328. .option_item {
  2329. width: 150px;
  2330. padding: 3px;
  2331. margin: 10px;
  2332. }
  2333. .ui-jqgrid tr.jqgrow td {
  2334. height: 38px !important;
  2335. }
  2336. .exercise_overview_options {
  2337. background-color: #F9F9F9;
  2338. -webkit-border-radius: 10px;
  2339. -moz-border-radius: 10px;
  2340. border-radius: 10px;
  2341. /*height: 40px;
  2342. margin: 5px; */
  2343. padding: 15px 0px 15px 0px;
  2344. }
  2345. .exercise_overview_options .left_option {
  2346. float: left;
  2347. margin: 12px 5px;
  2348. width: 33%;
  2349. }
  2350. .exercise_overview_options .center_option {
  2351. float: left;
  2352. margin: 15px 5px;
  2353. text-align: center;
  2354. width: 33%;
  2355. }
  2356. .exercise_overview_options .right_option {
  2357. float: right;
  2358. margin: 12px 5px;
  2359. text-align: right;
  2360. font-size: 14px;
  2361. }
  2362. .remind_highlight {
  2363. background-color: #FFF7C0;
  2364. }
  2365. .exercise_header {
  2366. border-bottom: 1px dotted #ccc;
  2367. margin-bottom: 20px;
  2368. }
  2369. /* Table */
  2370. .exercise_options {
  2371. width: 720px;
  2372. border-collapse: collapse;
  2373. border-spacing: 0;
  2374. }
  2375. .exercise_options th {
  2376. background-color: #F2F2F2;
  2377. border-bottom: 1px solid #DDDDDD;
  2378. line-height: normal;
  2379. padding: 8px 10px;
  2380. text-align: center;
  2381. vertical-align: middle;
  2382. }
  2383. /* Fixes questions list */
  2384. .question_options {
  2385. margin-top:16px;
  2386. min-height: 150px;
  2387. }
  2388. .question_options label {
  2389. margin-bottom: 14px;
  2390. display: block;
  2391. }
  2392. .question_options .radio, .question_options .checkbox {
  2393. min-height: 18px;
  2394. padding-left: 25px;
  2395. }
  2396. .question_options .radio input[type="radio"], .question_options .checkbox input[type="checkbox"] {
  2397. float: left;
  2398. margin-left: -25px;
  2399. }
  2400. .question_options input {
  2401. /* margin-right:10px; */
  2402. }
  2403. .question_description {
  2404. padding: 0px;
  2405. }
  2406. .exercise_description {
  2407. padding: 0px 0px 10px 0px;
  2408. border-bottom: 1px solid #CCCCCC;
  2409. }
  2410. .exercise_title {
  2411. font-size: 1.6em;
  2412. font-weight: bold;
  2413. padding: 10px 0px 10px 0px;
  2414. }
  2415. .question_title {
  2416. font-size: 1.2em;
  2417. font-weight: bold;
  2418. margin: 15px 0px;
  2419. }
  2420. .question_no_answer {
  2421. background-color: #FFF7C0;
  2422. /* padding: 5px 0px 5px 0px; */
  2423. margin: 10px 0px 5px 0px;
  2424. }
  2425. .question_answer {
  2426. display: block;
  2427. float: left;
  2428. margin: 0;
  2429. width: 100%;
  2430. margin: 0 0 0 0px;
  2431. padding: 0px 0px 5px 0px;
  2432. }
  2433. .question_answer label {
  2434. float: left;
  2435. margin: 0px 0 0 8px;
  2436. }
  2437. .question_answer input {
  2438. float: left;
  2439. margin: 0px;
  2440. }
  2441. #question_description {
  2442. padding-left: 5px;
  2443. padding-top: 10px;
  2444. padding-bottom:10px;
  2445. }
  2446. #question_score {
  2447. padding-top: 10px;
  2448. padding-bottom: 10px;
  2449. font-weight: bold;
  2450. font-size: 130%;
  2451. }
  2452. .question_row {
  2453. margin-bottom: 40px;
  2454. }
  2455. .ribbon {
  2456. float: left;
  2457. width: 100%;
  2458. margin-bottom: 20px;
  2459. border: 1px solid #d2d2d2;
  2460. border-radius: 3px;
  2461. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  2462. position: relative;
  2463. background-image: -ms-linear-gradient(top, #FDFDFD, #F3F5F7);
  2464. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FDFDFD), to(#F3F5F7));
  2465. background-image: -webkit-linear-gradient(top, #FDFDFD, #F3F5F7);
  2466. background-image: -o-linear-gradient(top, #FDFDFD, #F3F5F7);
  2467. background-image: -moz-linear-gradient(top, #FDFDFD, #F3F5F7);
  2468. background-image: linear-gradient(top, #FDFDFD, #F3F5F7);
  2469. }
  2470. .ribbon .rib {
  2471. height: 30px;
  2472. width: 120px;
  2473. display: block;
  2474. line-height: 1.3;
  2475. left: -2px;
  2476. top: 0px;
  2477. color: #cfcfcf;
  2478. margin: 0;
  2479. padding: 2px 10px;
  2480. position: relative;
  2481. text-shadow: 0 1px 1px #111;
  2482. border-top: 1px solid #363636;
  2483. border-bottom: 1px solid #202020;
  2484. background: #333;
  2485. background-image: -ms-linear-gradient(top, #414B57, #2F3741);
  2486. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#414B57), to(#2F3741));
  2487. background-image: -webkit-linear-gradient(top, #414B57, #2F3741);
  2488. background-image: -o-linear-gradient(top, #414B57, #2F3741);
  2489. background-image: -moz-linear-gradient(top, #414B57, #2F3741);
  2490. background-image: linear-gradient(top, #414B57, #2F3741);
  2491. border-radius: 5px 2px 0 0;
  2492. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  2493. float: left;
  2494. }
  2495. .ribbon .rib h3 {
  2496. color: white;
  2497. font-size: 16px;
  2498. float: left;
  2499. line-height: 16px;
  2500. padding-top: 5px;
  2501. margin-top: 0px;
  2502. }
  2503. .ribbon .rib-total {
  2504. width: 275px;
  2505. }
  2506. .ribbon .rib-error, .ribbon .ribbon-total-error {
  2507. background: #C83F25;
  2508. background-image: -ms-linear-gradient(top, #992800, #C83F25);
  2509. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#992800), to(#C83F25));
  2510. background-image: -webkit-linear-gradient(top, #992800, #C83F25);
  2511. background-image: -o-linear-gradient(top, #992800, #C83F25);
  2512. background-image: -moz-linear-gradient(top, #992800, #C83F25);
  2513. background-image: linear-gradient(top, #992800, #C83F25);
  2514. border-top: 1px solid #C56E5B;
  2515. border-bottom: 1px solid #7A290F;
  2516. float: left;
  2517. }
  2518. .ribbon .rib-gray {
  2519. background: #cccccc;
  2520. background-image: -ms-linear-gradient(top, #bbbbbb, #cccccc);
  2521. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bbbbbb), to(#cccccc));
  2522. background-image: -webkit-linear-gradient(top, #bbbbbb, #cccccc);
  2523. background-image: -o-linear-gradient(top, #bbbbbb, #cccccc);
  2524. background-image: -moz-linear-gradient(top, #bbbbbb, #cccccc);
  2525. background-image: linear-gradient(top, #bbbbbb, #cccccc);
  2526. border-top: 1px solid #bbbbbb;
  2527. border-bottom: 1px solid #bbbbbb;
  2528. float: left;
  2529. }
  2530. .ribbon .rib-success, .ribbon .ribbon-total-success {
  2531. background-color: #768E00;
  2532. background-image: -ms-linear-gradient(top, #9CB80A, #768E00);
  2533. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9CB80A), to(#768E00));
  2534. background-image: -webkit-linear-gradient(top, #9CB80A, #768E00);
  2535. background-image: -o-linear-gradient(top, #9CB80A, #768E00);
  2536. background-image: -moz-linear-gradient(top, #9CB80A, #768E00);
  2537. background-image: linear-gradient(top, #9CB80A, #768E00);
  2538. border-top: 1px solid #A8C31B;
  2539. border-bottom: 1px solid #617700;
  2540. float: left;
  2541. }
  2542. .ribbon h4 {
  2543. margin: 0;
  2544. padding: 8px 10px;
  2545. color: #444;
  2546. float: left;
  2547. }
  2548. .ribbon-total h4 {
  2549. left: 290px;
  2550. }
  2551. .ribbon h5 {
  2552. display: block;
  2553. height: 30px;
  2554. width: 150px;
  2555. margin: 0;
  2556. padding: 15px 0px;
  2557. position: absolute;
  2558. right: 0px;
  2559. top: 0px;
  2560. }
  2561. .ribbon .rib::before {
  2562. content: '';
  2563. display: block;
  2564. width: 0;
  2565. height: 0;
  2566. position: absolute;
  2567. bottom: -11px;
  2568. z-index: -10;
  2569. border: 5px solid;
  2570. border-color: #242424 transparent transparent transparent;
  2571. }
  2572. .ribbon .rib-error::before {
  2573. border-color: #610801 transparent transparent transparent;
  2574. }
  2575. .ribbon .rib-success::before {
  2576. border-color: #66751B transparent transparent transparent;
  2577. }
  2578. .ribbon .rib-gray::before {
  2579. border-color: #ccc transparent transparent transparent;
  2580. }
  2581. .ribbon .rib::before {
  2582. left: 0;
  2583. }
  2584. .ribbon .rib::after {
  2585. right: 0;
  2586. }
  2587. .ribbon .success {
  2588. }
  2589. .ribbon .error {
  2590. color: red;
  2591. }
  2592. .ribbon .success {
  2593. color: green;
  2594. }
  2595. .exercise_save_now_button img {
  2596. position: relative;
  2597. top: 4px;
  2598. }
  2599. .exercise_save_now_button {
  2600. margin-top: 10px;
  2601. }
  2602. .exercise_save_now_button, .exercise_button {
  2603. /* padding:5px; */
  2604. }
  2605. .time_container_warning {
  2606. background-color: #FFD700;
  2607. border: 1px solid #B8860B;
  2608. }
  2609. /* Exercise clock*/
  2610. .count_down {
  2611. padding: 3px;
  2612. font-size: 22px;
  2613. font-weight: bold;
  2614. color: #222;
  2615. padding: 12px;
  2616. text-align: center;
  2617. width: 200px;
  2618. }
  2619. .red_alert {
  2620. color: red;
  2621. font-weight: bold;
  2622. }
  2623. #question_feedback {
  2624. -webkit-border-radius: 10px;
  2625. -moz-border-radius: 10px;
  2626. border-radius: 10px;
  2627. background-color: #FCF7BA;
  2628. border: 1px solid #EADC31;
  2629. color: #555;
  2630. font-size: 12px;
  2631. font-weight: bold;
  2632. list-style-type: none;
  2633. margin-top: 5px;
  2634. padding: 5px;
  2635. }
  2636. .userportal-order-courses-link {
  2637. background-color: #F9F9F9;
  2638. border-radius: 10px 10px 10px 10px;
  2639. height: 40px;
  2640. margin: 5px;
  2641. padding: 15px;
  2642. }
  2643. .userportal-order-courses-link a {
  2644. float: right;
  2645. }
  2646. .course_social_content {
  2647. background: #EFEFEF;
  2648. margin: 10px 21px;
  2649. padding: 10px;
  2650. }
  2651. .topics_grid_item {
  2652. border-bottom: 1px solid #CCCCCC;
  2653. margin-bottom: 20px;
  2654. }
  2655. #div_content_table {
  2656. border-bottom: 1px solid #EAEAEA;
  2657. margin-bottom: 20px;
  2658. padding-bottom: 10px;
  2659. }
  2660. .group_description {
  2661. word-wrap: break-word;
  2662. font-size: 11px;
  2663. }
  2664. /* Forms */
  2665. /*****************************************************
  2666. * FORM STYLES *
  2667. *****************************************************/
  2668. div.row div.form_header {
  2669. white-space: nowrap;
  2670. padding: 2px;
  2671. margin: 0px 0px 10px 0px;
  2672. background-color: #E5EDF9;
  2673. border: 1px solid #E5EDF9;
  2674. font-size: 20px;
  2675. }
  2676. /*
  2677. [dir=ltr] div.row div.label, [dir=ltl] div.row div.formw {
  2678. float: left;
  2679. text-align: right;
  2680. }
  2681. [dir=rtl] div.row div.label, [dir=rtr] div.row div.formw {
  2682. float: right;
  2683. text-align: left;
  2684. }*/
  2685. span.form_required {
  2686. color: #f00;
  2687. }
  2688. span.form_error {
  2689. color: #f00;
  2690. font-size: x-small;
  2691. margin: 2px;
  2692. }
  2693. form .row {
  2694. margin-bottom: 18px;
  2695. }
  2696. form .formw .freeze {
  2697. display: block;
  2698. padding-top: 8px;
  2699. }
  2700. .course_activity_home {
  2701. width: 100%;
  2702. }
  2703. .course_activity_home td {
  2704. line-height: normal;
  2705. padding: 4px;
  2706. text-align: left;
  2707. vertical-align: middle;
  2708. }
  2709. .hide {
  2710. display: none;
  2711. }
  2712. /* agenda js */
  2713. #add_event_form fieldset {
  2714. width: 400px;
  2715. }
  2716. .tag {
  2717. background-color: #D3E6EF;
  2718. border-radius: 3px 3px 3px 3px;
  2719. display: inline-block;
  2720. float: left;
  2721. font-size: 12px;
  2722. font-weight: 700;
  2723. margin: 0 10px 5px 0;
  2724. padding: 0.4em 0.6em;
  2725. }
  2726. .label_tag {
  2727. padding: 1px 3px 2px;
  2728. margin: 2px 3px 2px 0px;
  2729. /* padding:5px;*/
  2730. background-color: #bfbfbf;
  2731. font-size: 10px;
  2732. font-weight: bold;
  2733. color: #ffffff;
  2734. -webkit-border-radius: 3px;
  2735. -moz-border-radius: 3px;
  2736. border-radius: 3px;
  2737. text-align: center;
  2738. width: 155px;
  2739. }
  2740. .label_tag.personal_event {
  2741. background: #3366CC;
  2742. }
  2743. .label_tag.admin_event {
  2744. background: red;
  2745. }
  2746. .label_tag.course_event {
  2747. background: #458B00;
  2748. }
  2749. .label_tag.group_event {
  2750. background: #A0522D;
  2751. }
  2752. .label_tag.session_event {
  2753. background: #00496D;
  2754. }
  2755. .label_tag.important {
  2756. background-color: #c43c35;
  2757. }
  2758. .label_tag.warning {
  2759. background-color: #f89406;
  2760. }
  2761. .label_tag.success {
  2762. background-color: #46a546;
  2763. }
  2764. .label_tag.notice {
  2765. background-color: #62cffc;
  2766. }
  2767. .label_tag.skill {
  2768. background-color: #46a546;
  2769. }
  2770. .label_tag.course {
  2771. background-color: #62cffc;
  2772. }
  2773. .invisible {
  2774. color: #999;
  2775. }
  2776. .invisible h2 {
  2777. color: #999;
  2778. }
  2779. .requirements td {
  2780. padding: 5px;
  2781. }
  2782. /* header cell in data table in tools */
  2783. .data_table {
  2784. margin-bottom: 18px;
  2785. width: 100%;
  2786. border: 1px solid #DDDDDD;
  2787. }
  2788. .data_table th, .data_table td {
  2789. border-top: 1px solid #DDDDDD;
  2790. line-height: 18px;
  2791. padding: 6px;
  2792. text-align: left;
  2793. vertical-align: top;
  2794. }
  2795. .data_table th {
  2796. padding: 8px 10px;
  2797. font-weight: bold;
  2798. background-color: #F2F2F2;
  2799. border-bottom: 1px solid #DDDDDD;
  2800. }
  2801. .data_table td {
  2802. }
  2803. .data_table_no_border {
  2804. border-collapse: collapse;
  2805. border-spacing: 0;
  2806. font-size: 12px;
  2807. margin-bottom: 15px;
  2808. margin-top: 8px;
  2809. text-align: left;
  2810. width: 100%;
  2811. }
  2812. .data_table_no_border td {
  2813. line-height: normal;
  2814. padding: 6px;
  2815. text-align: left;
  2816. vertical-align: middle;
  2817. }
  2818. .data_table tr.row_odd {
  2819. background-color: #F9F9F9;
  2820. }
  2821. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  2822. background-color: #E5EDF9;
  2823. }
  2824. .data_table tr.row_even {
  2825. background-color: #fff;
  2826. }
  2827. .data_table_no_border td .highlight {
  2828. font-weight: bold;
  2829. }
  2830. .data_table_pagination {
  2831. width: 100%;
  2832. margin-top: 8px;
  2833. }
  2834. .form-stacked .label {
  2835. display: block;
  2836. float: none;
  2837. font-weight: bold;
  2838. line-height: 20px;
  2839. padding-top: 0;
  2840. text-align: left;
  2841. width: auto;
  2842. }
  2843. .form-stacked .row div.formw {
  2844. margin-left: 0;
  2845. }
  2846. .form-stacked .row {
  2847. margin-bottom: 9px;
  2848. }
  2849. #install_form blockquote {
  2850. line-height: 16px;
  2851. }
  2852. #install_form .data_table_no_border td {
  2853. width: 30%;
  2854. }
  2855. .lp_content_type_label {
  2856. font-style: italic;
  2857. color: #999;
  2858. font-size: 11px;
  2859. }
  2860. /* Stick table header */
  2861. .tableWithFloatingHeader th {
  2862. padding: 5px 5px 0px 5px;
  2863. }
  2864. .tableFloatingHeaderOriginal th, .tableWithFloatingHeader th {
  2865. height: 40px;
  2866. }
  2867. /* jsPlumb */
  2868. .skill_root {
  2869. box-shadow: 2px 2px 19px #aaa;
  2870. -o-box-shadow: 2px 2px 19px #aaa;
  2871. -webkit-box-shadow: 2px 2px 19px #aaa;
  2872. -moz-box-shadow: 2px 2px 19px #aaa;
  2873. -webkit-border-radius: 6px;
  2874. -opera-border-radius: 6px;
  2875. -moz-border-radius: 6px;
  2876. border-radius: 6px;
  2877. background-color: #ccc;
  2878. border: 0.1em dotted #D4E06B;
  2879. color: black;
  2880. font-size: 0.9em;
  2881. height: 4em;
  2882. opacity: 0.8;
  2883. padding-top: 0.9em;
  2884. text-align: center;
  2885. width: 120px;
  2886. z-index: 40;
  2887. position: relative;
  2888. }
  2889. .skill_child {
  2890. box-shadow: 2px 2px 19px #aaa;
  2891. -o-box-shadow: 2px 2px 19px #aaa;
  2892. -webkit-box-shadow: 2px 2px 19px #aaa;
  2893. -moz-box-shadow: 2px 2px 19px #aaa;
  2894. -webkit-border-radius: 6px;
  2895. -opera-border-radius: 6px;
  2896. -moz-border-radius: 6px;
  2897. border-radius: 6px;
  2898. background-color: white;
  2899. border: 0.1em dotted #D4E06B;
  2900. color: black;
  2901. font-size: 0.9em;
  2902. height: 4em;
  2903. opacity: 0.8;
  2904. padding-top: 0.9em;
  2905. /* position: absolute; */
  2906. text-align: center;
  2907. width: 120px;
  2908. z-index: 40;
  2909. float: left;
  2910. margin-left: 20px;
  2911. margin-bottom: 20px;
  2912. margin-top: 10px;
  2913. position: relative;
  2914. }
  2915. .done_window {
  2916. background-color: #73982C;
  2917. }
  2918. .first_window {
  2919. border: 1px solid red;
  2920. cursor: pointer;
  2921. }
  2922. .second_window {
  2923. border: 1px solid blue;
  2924. margin-left: 0px;
  2925. }
  2926. .third_window {
  2927. border: 1px solid blue;
  2928. cursor: pointer;
  2929. }
  2930. ._jsPlumb_endpoint {
  2931. z-index: 50;
  2932. }
  2933. .drag-locked {
  2934. border: 1px solid red;
  2935. }
  2936. ._jsPlumb_endpoint {
  2937. z-index: 50;
  2938. }
  2939. ._jsPlumb_connector {
  2940. z-index: 1;
  2941. }
  2942. .dropHover {
  2943. border: 1px dotted red;
  2944. }
  2945. .dragActive {
  2946. border: 2px dotted orange;
  2947. }
  2948. .edit_block {
  2949. z-index: 200;
  2950. }
  2951. #language_list {
  2952. width: 80px !important;
  2953. min-width: 140px !important;
  2954. }
  2955. /*****************************************************
  2956. * LOGIN AND LANGUAGE FORM *
  2957. *****************************************************/
  2958. #lang_form {
  2959. text-align: left;
  2960. }
  2961. .form_login {
  2962. padding: 3px 15px;
  2963. }
  2964. #formLogin label {
  2965. color: #666666;
  2966. }
  2967. #login_fail {
  2968. margin-left: 20px;
  2969. padding: 4px;
  2970. border: 1px solid #f00;
  2971. background-color: #fff;
  2972. font-size: 12px;
  2973. color: #f00;
  2974. width: 185px;
  2975. }
  2976. input.mainoption {
  2977. font-weight: bold;
  2978. -moz-border-radius-bottomleft: 5px;
  2979. -moz-border-radius-bottomright: 5px;
  2980. -moz-border-radius-topleft: 5px;
  2981. -moz-border-radius-topright: 5px;
  2982. border: 1px solid #E1E1E0;
  2983. }
  2984. input.liteoption {
  2985. font-weight: normal;
  2986. -moz-border-radius-bottomleft: 5px;
  2987. -moz-border-radius-bottomright: 5px;
  2988. -moz-border-radius-topleft: 5px;
  2989. -moz-border-radius-topright: 5px;
  2990. border: 1px solid #E1E1E0;
  2991. }
  2992. .row_selected {
  2993. border-color: #478ced #1f6fe2 #1f6fe2;
  2994. background-color: #FFFFCC;
  2995. background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFFCC), to(#FFFFCC));
  2996. background-image: -webkit-linear-gradient(top, #FFFFCC, #FFFFCC);
  2997. background-image: -moz-linear-gradient(top, #FFFFCC, #FFFFCC);
  2998. background-image: -ms-linear-gradient(top, #FFFFCC, #FFFFCC);
  2999. background-image: -o-linear-gradient(top, #FFFFCC, #FFFFCC);
  3000. background-image: linear-gradient(top, #FFFFCC, #FFFFCC);
  3001. /*filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2d7ceb', EndColorStr='#2978e6');*/
  3002. -moz-box-shadow: 0px 0px 0px transparent;
  3003. -webkit-box-shadow: 0px 1px 0px transparent;
  3004. box-shadow: 0px 1px 0px transparent;
  3005. }
  3006. .row_selected a, .row_selected .invisible, .row_selected td {
  3007. /* color: #FFFFFF !important; */
  3008. }
  3009. .data_table_exercise_result, .data_table_exercise_result_left {
  3010. border-collapse: collapse;
  3011. border-spacing: 0;
  3012. font-size: 12px;
  3013. margin-bottom: 15px;
  3014. margin-top: 8px;
  3015. text-align: left;
  3016. width: 100%;
  3017. }
  3018. .data_table_exercise_result td {
  3019. line-height: normal;
  3020. padding: 6px;
  3021. text-align: center;
  3022. vertical-align: middle;
  3023. }
  3024. .data_table_exercise_result_left td {
  3025. line-height: normal;
  3026. padding: 6px;
  3027. text-align: left;
  3028. vertical-align: middle;
  3029. }
  3030. #no-data-view {
  3031. padding: 20px 0 0px;
  3032. text-align: center;
  3033. }
  3034. div#no-data-view img {
  3035. margin-bottom: 25px;
  3036. }
  3037. div#no-data-view h2 {
  3038. border: 0 none;
  3039. color: #212121;
  3040. font-size: 18px;
  3041. font-weight: bold;
  3042. margin: 0 0 6px;
  3043. padding: 0;
  3044. }
  3045. div#no-data-view div.controls {
  3046. padding-top: 1px;
  3047. }
  3048. /* styles for the star rater */
  3049. .star-rating {
  3050. list-style: none;
  3051. margin: 0px;
  3052. padding: 0px;
  3053. width: 125px;
  3054. height: 25px;
  3055. position: relative;
  3056. overflow: hidden;
  3057. background: url(../img/alt_star.png) top left repeat-x;
  3058. }
  3059. .star-rating li {
  3060. padding: 0px;
  3061. margin: 0px;
  3062. width: 25px;
  3063. height: 25px;
  3064. float: left;
  3065. }
  3066. .star-rating li a {
  3067. display: block;
  3068. width: 25px;
  3069. height: 25px;
  3070. line-height: 25px;
  3071. text-decoration: none;
  3072. text-indent: -9000px;
  3073. z-index: 20;
  3074. position: absolute;
  3075. padding: 0px;
  3076. overflow: hidden;
  3077. }
  3078. .star-rating li a:hover {
  3079. background: url(../img/alt_star.png) left bottom;
  3080. z-index: 2;
  3081. left: 0px;
  3082. border: none;
  3083. }
  3084. .star-rating a.one-star {
  3085. left: 0px;
  3086. }
  3087. .star-rating a.one-star:hover {
  3088. width: 25px;
  3089. }
  3090. .star-rating a.two-stars {
  3091. left: 25px;
  3092. }
  3093. .star-rating a.two-stars:hover {
  3094. width: 50px;
  3095. }
  3096. .star-rating a.three-stars {
  3097. left: 50px;
  3098. }
  3099. .star-rating a.three-stars:hover {
  3100. width: 75px;
  3101. }
  3102. .star-rating a.four-stars {
  3103. left: 75px;
  3104. }
  3105. .star-rating a.four-stars:hover {
  3106. width: 100px;
  3107. }
  3108. .star-rating a.five-stars {
  3109. left: 100px;
  3110. }
  3111. .star-rating a.five-stars:hover {
  3112. width: 125px;
  3113. }
  3114. .star-rating li.current-rating {
  3115. background: url(../img/alt_star.png) left center;
  3116. position: absolute;
  3117. height: 25px;
  3118. display: block;
  3119. text-indent: -9000px;
  3120. z-index: 1;
  3121. }
  3122. /* remove halo effect in firefox */
  3123. a:active {
  3124. outline: none;
  3125. }
  3126. .skills-profiles, .skills-users, .skills-skills {
  3127. margin-top: 10px;
  3128. margin-bottom: 10px;
  3129. padding: 10px;
  3130. border: 1px solid #ccc;
  3131. }
  3132. .skills-skills ul.holder,
  3133. .skills-users ul.holder,
  3134. .skills-profiles ul.holder {
  3135. margin-bottom: 8px;
  3136. border: 0px;
  3137. }
  3138. .offline_user {
  3139. display: block;
  3140. height: 20px;
  3141. width: 20px;
  3142. position: absolute;
  3143. background: url("offline.png") no-repeat scroll right center transparent;
  3144. }
  3145. .online_user {
  3146. display: block;
  3147. height: 20px;
  3148. width: 20px;
  3149. position: absolute;
  3150. background: url("online.png") no-repeat scroll right center transparent;
  3151. }
  3152. .online_user_in_text {
  3153. background: url("online.png") no-repeat scroll right center transparent;
  3154. height: 16px;
  3155. width: 17px;
  3156. display: inline-block;
  3157. margin-right: 4px;
  3158. }
  3159. .teacher_online {
  3160. background: url("teacher.png") no-repeat scroll right center transparent;
  3161. height: 16px;
  3162. width: 17px;
  3163. display: inline-block;
  3164. margin-right: 4px;
  3165. }
  3166. .student_online {
  3167. background: url("student.png") no-repeat scroll right center transparent;
  3168. height: 16px;
  3169. width: 17px;
  3170. display: inline-block;
  3171. margin-right: 4px;
  3172. }
  3173. #online_grid_container .thumbnail .caption {
  3174. text-align: center;
  3175. }
  3176. .offline_user_in_text {
  3177. background: url("offline.png") no-repeat scroll right center transparent;
  3178. height: 16px;
  3179. width: 17px;
  3180. display: inline-block;
  3181. margin-right: 4px;
  3182. }
  3183. .subnav .nav .hide_menu {
  3184. display: none;
  3185. }
  3186. .homepage_notice {
  3187. }
  3188. .welcome_course li {
  3189. float: left;
  3190. list-style-type: none;
  3191. width: 175px
  3192. }
  3193. .welcome_course li p {
  3194. margin-left: auto;
  3195. margin-right: auto;
  3196. width: 88px;
  3197. }
  3198. .welcome_course li a {
  3199. margin-left: auto;
  3200. margin-right: auto;
  3201. width: 120px;
  3202. }
  3203. /* Nanogong - exercise player*/
  3204. .nanogong_player_container {
  3205. width: 370px;
  3206. margin: 0 auto;
  3207. }
  3208. .nanogong_player {
  3209. float: left;
  3210. }
  3211. .action_player {
  3212. float: right;
  3213. width: 120px;
  3214. }
  3215. .audio_preview_container {
  3216. margin-left: 50px;
  3217. }
  3218. /* ie fixes */
  3219. /* Disabling help/bug notifications */
  3220. .lt-ie7 #navigation {
  3221. display: none;
  3222. }
  3223. /* Disabling top bar */
  3224. .lt-ie7 #topbar {
  3225. display: none
  3226. }
  3227. .lt-ie7 .subnav .nav > li {
  3228. float: left !important;
  3229. }
  3230. .lt-ie7 #announcements_page {
  3231. width: 450px !important;
  3232. }
  3233. /* Disabling chat */
  3234. .lt-ie7 #chatmain {
  3235. display: none;
  3236. }
  3237. #my_timeline {
  3238. background: url("dot.gif") repeat-x scroll left 45px;
  3239. height: 350px;
  3240. margin: 0px auto;
  3241. overflow: hidden;
  3242. position: relative;
  3243. width: 600px;
  3244. }
  3245. #dates {
  3246. /* height: 60px; */
  3247. overflow: hidden;
  3248. width: 800px;
  3249. }
  3250. #my_timeline #next {
  3251. background: url("../img/action_next.png") no-repeat transparent;
  3252. height: 32px;
  3253. width: 32px;
  3254. float: right;
  3255. }
  3256. #my_timeline #prev {
  3257. background: url("../img/action_prev.png") no-repeat transparent;
  3258. height: 32px;
  3259. width: 32px;
  3260. float: left;
  3261. }
  3262. #dates .selected {
  3263. font-size: 22px;
  3264. font-weight: bold;
  3265. font-color: #E06B04;
  3266. }
  3267. #dates li {
  3268. background: url("biggerdot.png") no-repeat scroll center bottom transparent;
  3269. float: left;
  3270. font-size: 14px;
  3271. height: 50px;
  3272. list-style: none outside none;
  3273. text-align: center;
  3274. width: 130px;
  3275. }
  3276. #issues {
  3277. height: 350px;
  3278. overflow: hidden;
  3279. width: 800px;
  3280. }
  3281. #issues li {
  3282. float: left;
  3283. height: 350px;
  3284. list-style: none outside none;
  3285. width: 800px;
  3286. }
  3287. #issues li h3 {
  3288. color: #FFCC00;
  3289. font-size: 48px;
  3290. margin: 0px;
  3291. text-shadow: 1px 1px 2px #000000;
  3292. }
  3293. #issues li p {
  3294. font-size: 14px;
  3295. font-weight: normal;
  3296. line-height: 22px;
  3297. margin-right: 70px;
  3298. text-shadow: 1px 1px 2px #000000;
  3299. }
  3300. #course_tools .row h3 {
  3301. margin-top: 10px;
  3302. }
  3303. .td_actions {
  3304. /*
  3305. background:#F9F9F9;
  3306. border:1px solid #eee;
  3307. margin-bottom: 5px;
  3308. padding:2px;
  3309. vertical-align:middle;
  3310. */
  3311. width: 250px;
  3312. }
  3313. /*
  3314. This is set in the template
  3315. .td_actions a {
  3316. float:left;
  3317. width:100%;
  3318. }
  3319. */
  3320. /*****************************************************
  3321. * THE NEW FORUM *
  3322. *****************************************************/
  3323. /* **** FORUM CATEGORY **** */
  3324. .forum_category {
  3325. background-color: #0066CC;
  3326. color: #fff;
  3327. }
  3328. .forum_category a {
  3329. color: #fff;
  3330. }
  3331. .forum_category_header {
  3332. background-color: #0066CC;
  3333. color: #fff;
  3334. }
  3335. tr.forum_category_header a {
  3336. color: #fff;
  3337. }
  3338. /* **** FORUM **** */
  3339. .forum_header {
  3340. background-color: #EEF;
  3341. }
  3342. /* **** THREAD **** */
  3343. .forum_threadheader {
  3344. color: #aaa;
  3345. background-color: #F7F7F7;
  3346. }
  3347. .forum-thread-header {
  3348. color: #000000;
  3349. background-color: #F7F7F7;
  3350. border-left: 1px solid #aaa;
  3351. border-right: 1px solid #aaa;
  3352. border-bottom: 1px solid #aaa;
  3353. border-top: 1px solid #aaa;
  3354. }
  3355. .forum-thread-body {
  3356. color: #000000;
  3357. background-color: #FFFFFF;
  3358. border-left: 1px solid #aaa;
  3359. border-right: 1px solid #aaa;
  3360. border-bottom: 1px solid #aaa;
  3361. border-top: 1px solid #aaa;
  3362. }
  3363. /* **** POST **** */
  3364. .quote {
  3365. background-color: #a0e5fc;
  3366. }
  3367. .current {
  3368. font-weight: bold;
  3369. }
  3370. .structure {
  3371. /*border-bottom: 1px solid #666666;*/
  3372. font-weight: bold;
  3373. background-color: #F7F7F7;
  3374. height: 20px;
  3375. }
  3376. a.forum_group_link {
  3377. font-weight: lighter;
  3378. display: inline;
  3379. }
  3380. .forum_description {
  3381. color: #000;
  3382. font-weight: normal;
  3383. font-size: 11px;
  3384. }
  3385. .forum_description p {
  3386. font-size: 11px;
  3387. }
  3388. .forum_title {
  3389. color: #000;
  3390. font-size: 14px;
  3391. }
  3392. .forum_low_description {
  3393. color: #737780;
  3394. font-style: italic;
  3395. font-weight: normal;
  3396. }
  3397. .forum_attach_comment {
  3398. color: #737780;
  3399. font-style: italic;
  3400. font-weight: normal;
  3401. }
  3402. .forum_message_left {
  3403. width: 150px;
  3404. vertical-align: top;
  3405. border-right: 1px solid #aaa;
  3406. background-color: #F7F7F7;
  3407. }
  3408. .forum_message_left_2_be_approved {
  3409. width: 150px;
  3410. vertical-align: top;
  3411. border-right: 1px solid #aaa;
  3412. background-color: #F7F7F7;
  3413. color: #999;
  3414. }
  3415. .forum_message_post_title {
  3416. /*border-bottom: 1px solid #666666;*/
  3417. font-weight: bold;
  3418. background-color: #F7F7F7;
  3419. height: 20px;
  3420. font-size: 20px;
  3421. }
  3422. .forum_message_post_title_2_be_approved {
  3423. /*border-bottom: 1px solid #666666;*/
  3424. color: #999;
  3425. font-weight: bold;
  3426. background-color: #F7F7F7;
  3427. height: 20px;
  3428. }
  3429. .forum_message_post_text {
  3430. /*border-bottom: 1px solid #666666;*/
  3431. margin-bottom: 10px;
  3432. vertical-align: top;
  3433. }
  3434. .forum_message_post_text_2_be_approved {
  3435. /*border-bottom: 1px solid #666666;*/
  3436. color: #999;
  3437. margin-bottom: 10px;
  3438. vertical-align: top;
  3439. }
  3440. /* New forum table */
  3441. .forum_table_title {
  3442. border-collapse: collapse;
  3443. width: 100%;
  3444. padding: 5px;
  3445. border-left: 1px solid #ccc;
  3446. border-top: 1px solid #ccc;
  3447. border-right: 1px solid #ccc;
  3448. padding: 5px;
  3449. }
  3450. .forum_table_title th {
  3451. padding-right: 12px;
  3452. /*border: 1px solid gray;*/
  3453. background-color: #E5EDF9;
  3454. }
  3455. .forum_table {
  3456. border-collapse: collapse;
  3457. width: 100%;
  3458. padding: 5px;
  3459. border: 1px solid #ccc;
  3460. margin-bottom: 15px;
  3461. }
  3462. .forum_table .forum_head {
  3463. padding: 5px;
  3464. text-align: left;
  3465. font-size: 14px;
  3466. }
  3467. .forum_table th {
  3468. padding-right: 12px;
  3469. background-color: #E5EDF9;
  3470. }
  3471. .forum_table tr.row_odd {
  3472. background-color: #F2F2F2;
  3473. }
  3474. .forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
  3475. background-color: #E5EDF9;
  3476. }
  3477. .forum_table tr.row_even {
  3478. background-color: #fff;
  3479. }
  3480. .forum_table td {
  3481. padding: 5px;
  3482. vertical-align: top;
  3483. border-bottom: 1px solid #ccc;
  3484. border-right: 1px dotted #e1e1e1;
  3485. border-left: 1px dotted #e1e1e1;
  3486. border-top: 1px solid #ccc;
  3487. }
  3488. .post {
  3489. border: 1px solid #ccc;
  3490. margin-bottom: 5px;
  3491. }
  3492. /* User list */
  3493. .blackboard_show {
  3494. float: left;
  3495. position: absolute;
  3496. border: 1px solid black;
  3497. width: 200px;
  3498. background-color: white;
  3499. z-index: 99;
  3500. padding: 3px;
  3501. display: inline;
  3502. }
  3503. .blackboard_hide {
  3504. display: none;
  3505. }
  3506. #online_grid_container li img {
  3507. height: 100px;
  3508. }
  3509. #online_grid_container .thumbnail .caption {
  3510. height: 30px;
  3511. }
  3512. #hide_bar_template {
  3513. width: 10px;
  3514. display: inline;
  3515. float: left;
  3516. height: 100%;
  3517. padding-bottom: 90em;
  3518. margin-bottom: -90em;
  3519. cursor: pointer;
  3520. background-color: #eee;
  3521. margin-left: 4px !important;
  3522. background-image: url("../img/hide0.png");
  3523. background-repeat: no-repeat;
  3524. background-position: center center;
  3525. }
  3526. #hide_bar_template:hover {
  3527. background-color: #aaa;
  3528. }
  3529. .timeline-example {
  3530. background-color: #FFFFFF;
  3531. border: 1px solid #CCCCCC;
  3532. border-radius: 10px 10px 10px 10px;
  3533. box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.25);
  3534. margin-bottom: 20px;
  3535. padding-bottom: 20px;
  3536. padding-top: 20px;
  3537. }
  3538. #timeline {
  3539. clear: both;
  3540. height: 600px !important;
  3541. position: relative !important;
  3542. z-index: 100;
  3543. }
  3544. #main_content .course_item {
  3545. padding: 0px 0px 16px 0px;
  3546. }
  3547. /* actions */
  3548. .actions_lp {
  3549. background: #F8F8F8;
  3550. margin: 0px;
  3551. padding: 9px 0px 9px 0px;
  3552. width: 100%;
  3553. text-align: center;
  3554. }
  3555. .actions_lp .btn-group {
  3556. margin-left: 25px;
  3557. }
  3558. .actions_lp img {
  3559. vertical-align: middle;
  3560. }
  3561. .actions_lp a {
  3562. }
  3563. .actions_lp span {
  3564. margin-right: 10px;
  3565. vertical-align: middle;
  3566. }
  3567. .actions_lp form {
  3568. margin-right: 10px;
  3569. vertical-align: middle;
  3570. }
  3571. .exercise_overview_options {
  3572. text-align: center;
  3573. }
  3574. .new_actions {
  3575. background-color: #EEEEEE;
  3576. background-image: -moz-linear-gradient(center top, #F5F5F5 0%, #EEEEEE 100%);
  3577. background-repeat: repeat-x;
  3578. border: 1px solid #E5E5E5;
  3579. border-radius: 4px 4px 4px 4px;
  3580. height: 53px;
  3581. }
  3582. .new_actions .nav > li > a {
  3583. border-left: 1px solid #F5F5F5;
  3584. border-radius: 0 0 0 0;
  3585. border-right: 1px solid #E5E5E5;
  3586. margin: 0;
  3587. padding-bottom: 11px;
  3588. padding-top: 11px;
  3589. }
  3590. .new_actions-fixed {
  3591. border-color: #D5D5D5;
  3592. border-radius: 0 0 0 0;
  3593. border-width: 0 0 1px;
  3594. left: 0;
  3595. position: fixed;
  3596. right: 0;
  3597. top: 38px;
  3598. z-index: 1030;
  3599. }
  3600. .new_actions .nav > .active > a, .new_actions .nav > .active > a:hover {
  3601. background-color: #E9E9E9;
  3602. border-left: 0 none;
  3603. border-right-color: #DDDDDD;
  3604. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05) inset;
  3605. color: #777777;
  3606. padding-left: 13px;
  3607. }
  3608. .new_actions .nav-tabs > li > a, .new_actions .nav-pills > li > a {
  3609. padding-left: 6px;
  3610. padding-right: 6px;
  3611. line-height: 18px;
  3612. }
  3613. .subnav .nav > li > .logout {
  3614. padding-top: 8px;
  3615. }
  3616. footer {
  3617. /* Default gray footer */
  3618. background-color: #F5F5F5; /* Old browsers */
  3619. background-repeat: repeat-x; /* Repeat the gradient */
  3620. background-image: -moz-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* FF3.6+ */
  3621. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F5F5F5), color-stop(100%, #EEEEEE)); /* Chrome,Safari4+ */
  3622. background-image: -webkit-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* Chrome 10+,Safari 5.1+ */
  3623. background-image: -ms-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* IE10+ */
  3624. background-image: -o-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* Opera 11.10+ */
  3625. /* Fixes bug in ie8 */
  3626. /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F5F5F5', endColorstr='#EEEEEE',GradientType=0 ); */
  3627. /* IE6-9 */
  3628. background-image: linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* W3C */
  3629. }
  3630. /* Default LP left column values */
  3631. #learning_path_left_zone {
  3632. float: left;
  3633. width: 280px;
  3634. height: 100%;
  3635. padding-left: 8px;
  3636. padding-right: 4px;
  3637. }
  3638. #learning_path_left_zone #header {
  3639. font-size: 14px;
  3640. }
  3641. #author_icon {
  3642. float: left;
  3643. }
  3644. #lp_navigation_elem {
  3645. float: left;
  3646. }
  3647. #author_image {
  3648. border: 1px solid #CCCCCC;
  3649. float: left;
  3650. margin: 0;
  3651. padding: 8px;
  3652. position: relative;
  3653. width: 94%;
  3654. }
  3655. #author_name {
  3656. float: left;
  3657. text-align: center;
  3658. width: 100%;
  3659. font-size: 11px;
  3660. color: #888;
  3661. margin-top: 2px;
  3662. }
  3663. #lp_media_file {
  3664. float: left;
  3665. text-align: center;
  3666. width: 94%;
  3667. }
  3668. #learning_path_toc {
  3669. font-size: 9pt;
  3670. margin: 0;
  3671. }
  3672. #scorm_title {
  3673. background: none repeat scroll 0 0 #EEEEEE;
  3674. color: #444444;
  3675. font-size: 16px;
  3676. font-weight: bold;
  3677. padding: 1px 5px 3px 8px;
  3678. }
  3679. .progresstext {
  3680. text-align: center;
  3681. }
  3682. .inner_lp_toc {
  3683. overflow: auto;
  3684. background-color: white;
  3685. height: 210px;
  3686. }
  3687. .inner_lp_toc .scorm_item a {
  3688. font-weight: bold;
  3689. font-size: 14px;
  3690. margin-right: 1px;
  3691. padding-bottom: 2px;
  3692. text-decoration: none;
  3693. color: #2F3E46;
  3694. }
  3695. .inner_lp_toc .scorm_item a.chapter_module {
  3696. font-weight: normal;
  3697. margin-right: 10px;
  3698. }
  3699. .inner_lp_toc .scorm_item_highlight {
  3700. border: 1px solid #999;
  3701. background: #999;
  3702. font-weight: bold;
  3703. text-shadow: 0 -1px 1px #666;
  3704. background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#999));
  3705. background-image: -webkit-linear-gradient(top, #666, #999);
  3706. background-image: -moz-linear-gradient(top, #666, #999);
  3707. background-image: -ms-linear-gradient(top, #666, #999);
  3708. background-image: -o-linear-gradient(top, #666, #999);
  3709. background-image: linear-gradient(top, #666, #999);
  3710. margin-right: 0px;
  3711. padding: 10px 0px 10px 0px;
  3712. text-decoration: none;
  3713. }
  3714. .inner_lp_toc .scorm_item_highlight a {
  3715. color: #fff;
  3716. margin-right: 1px;
  3717. text-decoration: none;
  3718. font-weight: bold;
  3719. }
  3720. .inner_lp_toc .scorm_item_section {
  3721. border: 1px solid #222;
  3722. background: #333;
  3723. font-weight: bold;
  3724. color: #fff;
  3725. text-shadow: 0 -1px 1px #000;
  3726. background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333));
  3727. background-image: -webkit-linear-gradient(top, #555, #333);
  3728. background-image: -moz-linear-gradient(top, #555, #333);
  3729. background-image: -ms-linear-gradient(top, #555, #333);
  3730. background-image: -o-linear-gradient(top, #555, #333);
  3731. background-image: linear-gradient(top, #555, #333);
  3732. margin-right: 1px;
  3733. padding: 10px 0px 10px 0px;
  3734. text-decoration: none;
  3735. }
  3736. .inner_lp_toc .scorm_item {
  3737. font-size: 16px;
  3738. margin-left: 10px;
  3739. margin-right: 10px;
  3740. text-decoration: none;
  3741. border-color: rgba(255, 255, 255, 0.3);
  3742. }
  3743. .inner_lp_toc .scorm_item_1 {
  3744. border-bottom: 1px solid #CCCCCC;
  3745. background: #eee;
  3746. font-weight: bold;
  3747. color: #444;
  3748. text-shadow: 0 1px 1px #f6f6f6;
  3749. background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee));
  3750. background-image: -webkit-linear-gradient(top, #fdfdfd, #eee);
  3751. background-image: -moz-linear-gradient(top, #fdfdfd, #eee);
  3752. background-image: -ms-linear-gradient(top, #fdfdfd, #eee);
  3753. background-image: -o-linear-gradient(top, #fdfdfd, #eee);
  3754. background-image: linear-gradient(top, #fdfdfd, #eee);
  3755. margin-right: 1px;
  3756. padding: 10px 0px 10px 0px;
  3757. text-decoration: none;
  3758. font-weight: normal;
  3759. /* background:#FDFDFD; */
  3760. }
  3761. .inner_lp_toc .scorm_item_2 {
  3762. background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee));
  3763. background-image: -webkit-linear-gradient(top, #fdfdfd, #eee);
  3764. background-image: -moz-linear-gradient(top, #fdfdfd, #eee);
  3765. background-image: -ms-linear-gradient(top, #fdfdfd, #eee);
  3766. background-image: -o-linear-gradient(top, #fdfdfd, #eee);
  3767. background-image: linear-gradient(top, #fdfdfd, #eee);
  3768. border-bottom: 1px solid #CCCCCC;
  3769. color: #444444;
  3770. font-weight: bold;
  3771. text-shadow: 0 1px 1px #F6F6F6;
  3772. margin-right: 1px;
  3773. padding: 10px 0px 10px 0px;
  3774. text-decoration: none;
  3775. font-weight: normal;
  3776. }
  3777. .ui-state-highlight_lp {
  3778. border: 1px solid #FEAA18;
  3779. background: #FFB738;
  3780. color: #363636;
  3781. height: 20px;
  3782. width: 70%;
  3783. }
  3784. .bottom_actions {
  3785. display: block;
  3786. }
  3787. .bottom_actions_fixed {
  3788. position: fixed;
  3789. z-index: 9001;
  3790. bottom: 0;
  3791. left: 0px;
  3792. margin-bottom: 0px;
  3793. }
  3794. .doc_folder {
  3795. margin-right: 5px;
  3796. margin-top: 5px;
  3797. width: 100%;
  3798. float: left;
  3799. }
  3800. .doc_resource {
  3801. margin: 5px;
  3802. width: 100%;
  3803. float: left;
  3804. }
  3805. .lp_resource_element_new {
  3806. border: 2px dotted green;
  3807. }
  3808. #course_thing_to_do .thumbnail {
  3809. text-align: center;
  3810. }
  3811. .handle {
  3812. background-image: url('../img/div_show.gif');
  3813. background-repeat: no-repeat;
  3814. background-position: left center;
  3815. padding-left: 25px;
  3816. box-shadow: none;
  3817. }
  3818. .handle.collapsed {
  3819. background-image: url('../img/div_show.gif');
  3820. background-repeat: no-repeat;
  3821. background-position: left center;
  3822. padding-left: 25px;
  3823. box-shadow: none;
  3824. }
  3825. .handle.expanded {
  3826. background-image: url('../img/div_hide.gif');
  3827. background-repeat: no-repeat;
  3828. background-position: left center;
  3829. padding-left: 25px;
  3830. box-shadow: none;
  3831. }
  3832. .collapsible .handle {
  3833. background-image: url('../img/div_hide.gif');
  3834. background-repeat: no-repeat;
  3835. background-position: left center;
  3836. padding-left: 25px;
  3837. box-shadow: none;
  3838. }
  3839. .collapsible .handle.collapsed {
  3840. background-image: url('../img/div_show.gif');
  3841. background-repeat: no-repeat;
  3842. background-position: left center;
  3843. padding-left: 25px;
  3844. box-shadow: none;
  3845. }
  3846. .collapsible.expanded .handle {
  3847. background-image: url('../img/div_hide.gif');
  3848. background-repeat: no-repeat;
  3849. background-position: left center;
  3850. padding-left: 25px;
  3851. box-shadow: none;
  3852. }
  3853. .btn.show {
  3854. border: none;
  3855. border-radius: 0;
  3856. background-color: transparent;
  3857. width: 22px;
  3858. height: 22px;
  3859. margin: 0;
  3860. padding: 0;
  3861. display: inline-block;
  3862. background-image: url('../img/icons/22/invisible.png');
  3863. background-repeat: no-repeat;
  3864. background-position: center center;
  3865. box-shadow: none;
  3866. }
  3867. .btn.hide {
  3868. border: none;
  3869. border-radius: 0;
  3870. margin: 0;
  3871. padding: 0;
  3872. background-color: transparent;
  3873. width: 22px;
  3874. height: 22px;
  3875. display: inline-block;
  3876. background-image: url('../img/icons/22/visible.png');
  3877. background-repeat: no-repeat;
  3878. background-position: center center;
  3879. box-shadow: none;
  3880. }
  3881. .btn.loading {
  3882. border: none;
  3883. border-radius: 0;
  3884. background-color: transparent;
  3885. width: 22px;
  3886. height: 22px;
  3887. margin: 0;
  3888. padding: 0;
  3889. display: inline-block;
  3890. background-image: url('../img/loading1.gif') !important;
  3891. background-repeat: no-repeat;
  3892. background-position: center center;
  3893. box-shadow: none;
  3894. }
  3895. i.size-32 {
  3896. width: 32px;
  3897. height: 32px;
  3898. line-height: 32px;
  3899. margin: 0;
  3900. padding: 0;
  3901. border: none;
  3902. border-radius: 0;
  3903. background-repeat: no-repeat;
  3904. background-position: center center;
  3905. box-shadow: none;
  3906. background-color: transparent;
  3907. display: inline-block;
  3908. }
  3909. i.size-32.icon-new-folder {
  3910. background-image: url('../img/icons/32/new_folder.png');
  3911. }
  3912. i.size-32.icon-new-link {
  3913. background-image: url('../img/icons/32/new_link.png');
  3914. }
  3915. i.size-32.icon-export-csv {
  3916. background-image: url('../img/icons/32/export_csv.png');
  3917. }
  3918. i.size-32.icon-import-csv {
  3919. background-image: url('../img/icons/32/import_csv.png');
  3920. }
  3921. i.size-32.icon-delete-all {
  3922. background-image: url('../img/icons/32/delete.png');
  3923. }
  3924. i.size-32.icon-back {
  3925. background-image: url('../img/icons/32/back.png');
  3926. }
  3927. i.size-32.icon-settings {
  3928. background-image: url('../img/icons/32/settings.png');
  3929. }
  3930. i.size-32.icon-view-detailed {
  3931. background-image: url('../img/icons/32/view_detailed.png');
  3932. }
  3933. i.size-32.icon-view-text {
  3934. background-image: url('../img/icons/32/view_text.png');
  3935. }
  3936. i.size-32.icon-sort-by-created-date {
  3937. background-image: url('../img/icons/32/notes_order_by_date_new.png');
  3938. }
  3939. i.size-32.icon-sort-by-modified-date {
  3940. background-image: url('../img/icons/32/notes_order_by_date_mod.png');
  3941. }
  3942. i.size-32.icon-sort-by-title {
  3943. background-image: url('../img/icons/32/notes_order_by_title.png');
  3944. }
  3945. i.size-32.icon-new-announce {
  3946. background-image: url('../img/icons/32/new_announce.png');
  3947. }
  3948. i.size-22 {
  3949. width: 22px;
  3950. height: 22px;
  3951. line-height: 22px;
  3952. margin: 0;
  3953. padding: 0;
  3954. border: none;
  3955. border-radius: 0;
  3956. background-repeat: no-repeat;
  3957. background-position: center center;
  3958. box-shadow: none;
  3959. background-color: transparent;
  3960. display: inline-block;
  3961. }
  3962. i.size-22.icon-edit {
  3963. background-image: url('../img/icons/22/edit.png');
  3964. }
  3965. i.size-22.icon-delete {
  3966. background-image: url('../img/icons/22/delete.png');
  3967. }
  3968. i.icon-collapse {
  3969. background-image: url('../img/div_show.gif');
  3970. }
  3971. i.icon-expand {
  3972. background-image: url('../img/div_hide.gif');
  3973. }
  3974. .announcement {
  3975. /* background: none repeat scroll 0 0 #F2F2F2;*/
  3976. border: 1px solid #D3D3D3;
  3977. color: #555555;
  3978. font-weight: normal;
  3979. border-spacing: 0;
  3980. margin-bottom: 15px;
  3981. margin-top: 8px;
  3982. text-align: left;
  3983. width: 100%;
  3984. }
  3985. .announcement .title {
  3986. background: none repeat scroll 0 0 #F2F2F2;
  3987. color: black;
  3988. }
  3989. .announcement .title a:link,
  3990. .announcement .title a:active,
  3991. .announcement .title a:visited {
  3992. color: #555555;
  3993. }
  3994. .announcement .icon.attachement {
  3995. border: none;
  3996. border-radius: 0;
  3997. background-color: transparent;
  3998. width: 16px;
  3999. height: 16px;
  4000. margin: 0;
  4001. padding: 0;
  4002. display: inline-block;
  4003. background-image: url('../img/attachment.gif');
  4004. background-repeat: no-repeat;
  4005. background-position: center center;
  4006. box-shadow: none;
  4007. }
  4008. li.annoucement {
  4009. min-height: 76px;
  4010. }
  4011. .announcement .details {
  4012. font-style: italic;
  4013. text-align: right;
  4014. }
  4015. .control-text {
  4016. padding-top: 5px;
  4017. display: inline-block;
  4018. }
  4019. .boot-tooltip {
  4020. cursor: pointer;
  4021. }
  4022. /*
  4023. link
  4024. */
  4025. .link_category {
  4026. background-color: #FFFFFF;
  4027. margin-bottom: 5px;
  4028. }
  4029. .link_category .head {
  4030. background-color: #EFEFEF;
  4031. border: 1px solid #CCCCCC;
  4032. margin-bottom: 5px;
  4033. padding-top: 2px;
  4034. padding-right: 2px;
  4035. padding-bottom: 2px;
  4036. vertical-align: middle;
  4037. }
  4038. .link_category .body {
  4039. margin-left: 32px;
  4040. }
  4041. .link:nth-child(2n) {
  4042. background-color: #F9F9F9;
  4043. }
  4044. .link {
  4045. border-top: 1px solid #DDDDDD;
  4046. border-left: 1px solid #DDDDDD;
  4047. border-right: 1px solid #DDDDDD;
  4048. }
  4049. .link:last-child {
  4050. border-bottom: 1px solid #DDDDDD;
  4051. border-left: 1px solid #DDDDDD;
  4052. border-right: 1px solid #DDDDDD;
  4053. }
  4054. .link {
  4055. border-collapse: collapse;
  4056. /*border: 1px solid #CCCCCC;*/
  4057. padding-top: 6px;
  4058. padding-right: 6px;
  4059. padding-bottom: 6px;
  4060. padding-left: 6px;
  4061. vertical-align: middle;
  4062. }
  4063. .link .icon {
  4064. position: absolute;
  4065. float: left;
  4066. }
  4067. .link:hover {
  4068. background-color: #E5EDF9;
  4069. }
  4070. .link .title,
  4071. .link .description {
  4072. margin-left: 32px;
  4073. }
  4074. .link .description {
  4075. font-weight: normal;
  4076. color: #000000;
  4077. }
  4078. .link.invisible img {
  4079. opacity: 0.4;
  4080. filter: alpha(opacity = 40); /* For IE8 and earlier */
  4081. }
  4082. .link.invisible .description {
  4083. color: #999999;
  4084. }
  4085. .link .status {
  4086. border: none;
  4087. border-radius: 0;
  4088. background-color: transparent;
  4089. width: 22px;
  4090. height: 22px;
  4091. margin: 0;
  4092. padding: 0;
  4093. display: inline-block;
  4094. background-repeat: no-repeat;
  4095. background-position: center center;
  4096. box-shadow: none;
  4097. }
  4098. .link.invalid .status {
  4099. background-image: url('../img/icons/22/error.png');
  4100. }
  4101. .link.valid .status {
  4102. background-image: url('../img/icons/22/accept.png');
  4103. }
  4104. .btn.validate_link {
  4105. border: none;
  4106. border-radius: 0;
  4107. background-color: transparent;
  4108. width: 22px;
  4109. height: 22px;
  4110. margin: 0;
  4111. padding: 0;
  4112. display: inline-block;
  4113. background-image: url('../img/icons/22/preview_view.png');
  4114. background-repeat: no-repeat;
  4115. background-position: center center;
  4116. box-shadow: none;
  4117. }
  4118. /*
  4119. Glossary
  4120. */
  4121. i.size-32.icon-new-glossary-term {
  4122. background-image: url('../img/icons/32/new_glossary_term.png');
  4123. }
  4124. /*
  4125. * Notebook
  4126. */
  4127. i.size-32.icon-new-note {
  4128. background-image: url('../img/icons/32/new_note.png');
  4129. }
  4130. .notebook.entries li {
  4131. vertical-align: text-top;
  4132. }
  4133. .notebook.note {
  4134. display: inline-block;
  4135. width: 49%;
  4136. margin-left: 0px;
  4137. margin-right: 1px;
  4138. padding: 0;
  4139. }
  4140. .notebook.note {
  4141. background-color: #D2ECF5;
  4142. }
  4143. .notebook.note .title {
  4144. padding: 1;
  4145. display: block;
  4146. margin-top: 0;
  4147. margin-right: 0;
  4148. margin-left: 0;
  4149. padding-top: 5px;
  4150. padding-bottom: 12px;
  4151. vertical-align: baseline;
  4152. background-color: #028DC2;
  4153. color: #ffffff;
  4154. }
  4155. .notebook.note .footer {
  4156. text-align: right;
  4157. font-style: italic
  4158. }
  4159. #learning_path_main #control {
  4160. text-align: center;
  4161. background-image: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(#fff));
  4162. background-image: -webkit-linear-gradient(top, #ececec, #fff);
  4163. background-image: -moz-linear-gradient(top, #ececec, #fff);
  4164. background-image: -ms-linear-gradient(top, #ececec, #fff);
  4165. background-image: -o-linear-gradient(top, #ececec, #fff);
  4166. background-image: linear-gradient(top, #ececec, #fff);
  4167. height: 32px;
  4168. padding: 8px 0px 8px 0px;
  4169. opacity: 0.9;
  4170. bottom: 0px;
  4171. margin: auto;
  4172. width: 100%;
  4173. height: 34px;
  4174. position: absolute
  4175. }
  4176. /*
  4177. data table
  4178. */
  4179. .dataTables_wrapper {
  4180. clear: both;
  4181. }
  4182. .dataTables_length {
  4183. float: left;
  4184. width: 40%;
  4185. }
  4186. .dataTables_filter {
  4187. text-align: right;
  4188. }
  4189. .dataTables_info {
  4190. float: left;
  4191. width: 60%;
  4192. }
  4193. .dataTables_paginate {
  4194. float: right;
  4195. text-align: right;
  4196. }
  4197. .dataTables_wrapper label input, .dataTables_wrapper label textarea, .dataTables_wrapper label select {
  4198. display: inline-block;
  4199. }
  4200. .dataTables.display {
  4201. clear: both;
  4202. margin: 0 auto;
  4203. width: 100%;
  4204. }
  4205. .dataTables_wrapper .paginate_disabled_previous, .dataTables_wrapper .paginate_enabled_previous {
  4206. padding-left: 23px;
  4207. background: url("../img/action_prev.png") no-repeat scroll left top;
  4208. }
  4209. .dataTables_wrapper .paginate_disabled_next, .dataTables_wrapper .paginate_enabled_next {
  4210. margin-left: 10px;
  4211. padding-right: 23px;
  4212. background: url("../img/action_next.png") no-repeat scroll left top;
  4213. }
  4214. .dataTables_wrapper .paginate_disabled_previous, .dataTables_wrapper .paginate_disabled_next {
  4215. opacity: 0.4;
  4216. }
  4217. .dataTables_wrapper .sorting_asc {
  4218. background-image: url("../img/sort_asc.png");
  4219. background-repeat: no-repeat;
  4220. background-attachment: scroll;
  4221. background-position: right center;
  4222. }
  4223. .dataTables_wrapper .sorting_desc {
  4224. background-image: url("../img/sort_desc.png");
  4225. background-repeat: no-repeat;
  4226. background-attachment: scroll;
  4227. background-position: right center;
  4228. }
  4229. #course_category_well {
  4230. padding: 9px 0;
  4231. }
  4232. .nav-list img {
  4233. margin-right: 6px;
  4234. }
  4235. /* Only for Firefox */
  4236. @-moz-document url-prefix() {
  4237. select#question_type_hidden option {
  4238. padding: 10px 0px 10px 40px;
  4239. background-repeat:no-repeat;
  4240. }
  4241. select#question_type_hidden option[value="1"] {background-image: url(../img/icons/32/mcua.gif);}
  4242. select#question_type_hidden option[value="2"] {background-image: url(../img/icons/32/mcma.gif);}
  4243. select#question_type_hidden option[value="3"] {background-image: url(../img/icons/32/fill_in_blanks.gif);}
  4244. select#question_type_hidden option[value="4"] {background-image: url(../img/icons/32/matching.gif);}
  4245. select#question_type_hidden option[value="5"] {background-image: url(../img/icons/32/open_answer.gif);}
  4246. select#question_type_hidden option[value="6"] {background-image: url(../img/icons/32/hotspot.gif);}
  4247. select#question_type_hidden option[value="7"] {background-image: url(../img/icons/32/mcma.gif);}
  4248. select#question_type_hidden option[value="8"] {background-image: url(../img/icons/32/mcma.gif);}
  4249. select#question_type_hidden option[value="9"] {background-image: url(../img/icons/32/mcmac.gif);}
  4250. select#question_type_hidden option[value="10"] {background-image: url(../img/icons/32/mcuao.gif);}
  4251. select#question_type_hidden option[value="11"] {background-image: url(../img/icons/32/mcmao.gif);}
  4252. select#question_type_hidden option[value="12"] {background-image: url(../img/icons/32/mcmaco.gif);}
  4253. select#question_type_hidden option[value="13"] {background-image: url(../img/icons/32/audio_question.png);}
  4254. select#question_type_hidden option[value="14"] {background-image: url(../img/icons/32/mcmagl.gif);}
  4255. }
  4256. .btn-success.btn-install {
  4257. float: right;
  4258. }
  4259. /*
  4260. * work
  4261. */
  4262. i.size-32.icon-new-work {
  4263. background-image: url('../img/icons/32/new_work.png');
  4264. }
  4265. /* Default skill partition colors */
  4266. .skill_partition {
  4267. cursor: pointer;
  4268. stroke: #000000;
  4269. stroke-width: 1.5;
  4270. }
  4271. #skill_holder li {
  4272. float: left;
  4273. /*width: 120px;*/
  4274. }
  4275. #filepaths input {
  4276. margin-bottom: 5px;
  4277. }
  4278. /* Fixing z-index */
  4279. #ui-datepicker-div {
  4280. z-index: 1005 !important;
  4281. }
  4282. .exercise_save_mini_message {
  4283. padding-left: 5px;
  4284. }
  4285. .xdebug-error {
  4286. margin-top: 20px;
  4287. }
  4288. .multiple_select_header {
  4289. height: 35px;
  4290. margin-bottom: 15px;
  4291. }
  4292. .pagination .current a {
  4293. cursor: default;
  4294. color:white !important;
  4295. background-color: #3a87ad !important;
  4296. }
  4297. .pagination .before a, .pagination .before a:hover {
  4298. background-color: #EEECE1;
  4299. color: #0D0D0C;
  4300. }
  4301. .pagination .after a, .pagination .after a:hover {
  4302. background-color: #F5F5F5;
  4303. color:#999999;
  4304. }
  4305. .pagination .remind a, .pagination .remind a:hover {
  4306. /* text-decoration: underline; */
  4307. background-color: #f89406;
  4308. color:white;
  4309. }
  4310. .pagination .not_answered a , .pagination .not_answered a:hover {
  4311. background-color: #f89406;
  4312. }
  4313. .pagination .answered a , .pagination .answered a:hover {
  4314. background-color: green;
  4315. color: white;
  4316. }
  4317. .exercise_reminder_item {
  4318. font-size: 80%;
  4319. }
  4320. .exercise_reminder_item .radio, .exercise_reminder_item .checkbox {
  4321. padding-left: 0px;
  4322. }
  4323. .exercise_save_mini_message {
  4324. margin-left: 5px;
  4325. }
  4326. #learning_path_left_zone .no-border {
  4327. border: 0px;
  4328. }
  4329. .highlight_image_selected img {
  4330. border: 5px solid #0088cc;
  4331. }
  4332. .highlight_image_default img {
  4333. border: 5px solid transparent;
  4334. }
  4335. .window_right_question {
  4336. padding: 10px 10px 10px 25px;
  4337. }
  4338. .window_left_question {
  4339. text-align: right;
  4340. padding: 10px 25px 10px 10px;
  4341. }
  4342. .drag_question .window, .drag_question .label {
  4343. cursor:pointer;
  4344. box-shadow: 2px 2px 19px #aaa;
  4345. -o-box-shadow: 2px 2px 19px #aaa;
  4346. -webkit-box-shadow: 2px 2px 19px #aaa;
  4347. -moz-box-shadow: 2px 2px 19px #aaa;
  4348. min-height: 50px;
  4349. padding-top: 25px;
  4350. }
  4351. .select_class_filter {
  4352. margin: 0px 0px 50px 10px;
  4353. }
  4354. .advmultiselect .span1 {
  4355. padding-top: 50px;
  4356. }
  4357. .drag_question {
  4358. float: left;
  4359. width: 65%;
  4360. min-height: 4em;
  4361. }
  4362. .droppable {
  4363. float:left;
  4364. width:100px;
  4365. min-height: 25px;
  4366. padding : 1px;
  4367. text-align: center;
  4368. border: 1px dashed #555;
  4369. margin: 3px 3px 3px 0;
  4370. }
  4371. .drag_question li, .droppable li{
  4372. margin: 3px 3px 3px 0;
  4373. padding: 1px;
  4374. float: left;
  4375. width: 100px;
  4376. min-height: 25px;
  4377. text-align: center;
  4378. color: #000;
  4379. }
  4380. .item_added {
  4381. float:left;
  4382. }
  4383. .data_table .row_total {
  4384. background-color: #555;
  4385. color:white;
  4386. }
  4387. .exercise_pagination {
  4388. margin: 0px;
  4389. }
  4390. #question_admin_form .media, #edit_question .media{
  4391. display:none;
  4392. }
  4393. .activity_content {
  4394. margin-left:120px;
  4395. }
  4396. .form-signin {
  4397. max-width: 300px;
  4398. padding: 19px 29px 29px;
  4399. margin: 0 auto 20px;
  4400. background-color: #fff;
  4401. border: 1px solid #e5e5e5;
  4402. -webkit-border-radius: 5px;
  4403. -moz-border-radius: 5px;
  4404. border-radius: 5px;
  4405. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  4406. -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  4407. box-shadow: 0 1px 2px rgba(0,0,0,.05);
  4408. }
  4409. .form-signin .form-signin-heading,
  4410. .form-signin .checkbox {
  4411. margin-bottom: 10px;
  4412. }
  4413. .form-signin input[type="text"],
  4414. .form-signin input[type="password"] {
  4415. font-size: 16px;
  4416. height: auto;
  4417. margin-bottom: 15px;
  4418. padding: 7px 9px;
  4419. }
  4420. .question_no_title {
  4421. text-align: center;
  4422. }
  4423. .main_question .media .media-object {
  4424. font-weight: bold;
  4425. background-color: #ccc;
  4426. width:32px;
  4427. height:32px;
  4428. padding:8px 2px 0px 2px;
  4429. border-radius: 5px;
  4430. }
  4431. .main_question .media .question_description {
  4432. padding-top: 5px;
  4433. }
  4434. .btn-invitations {
  4435. margin-left: 110px;
  4436. }
  4437. .btn-msg {
  4438. background: url("send_msg.png") no-repeat left center;
  4439. background-position: 3px;
  4440. padding: 2px 4px;
  4441. padding-left: 22px;
  4442. margin-bottom: 10px;
  4443. font-size: 11px;
  4444. line-height: 14px;
  4445. background-color: #e6e6e6;
  4446. }
  4447. .btn-inv {
  4448. background: url("send_inv.png") no-repeat left center;
  4449. background-position: 3px;
  4450. padding: 2px 4px;
  4451. padding-left: 22px;
  4452. margin-bottom: 10px;
  4453. font-size: 11px;
  4454. line-height: 14px;
  4455. background-color: #e6e6e6;
  4456. }
  4457. .btn-inv-off {
  4458. background: url("send_inv_off.png") no-repeat left center;
  4459. background-position: 3px;
  4460. padding: 2px 4px;
  4461. padding-left: 22px;
  4462. margin-bottom: 10px;
  4463. font-size: 11px;
  4464. line-height: 14px;
  4465. background-color: #e6e6e6;
  4466. }
  4467. .password-verdict {
  4468. padding-left:5px;
  4469. }
  4470. #password_progress {
  4471. width: 220px;
  4472. }