base.css 74 KB

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