base.css 64 KB

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