base.css 91 KB

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