base.css 88 KB

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