base.css 68 KB

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