base.css 70 KB

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