base_chamilo.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611
  1. /*
  2. * Special CSS styles for the chamilo_XXX themes
  3. */
  4. .item {
  5. -moz-border-radius:5px;
  6. border-radius:5px;
  7. border:1px solid #E1E1E0;
  8. }
  9. .subnav .brand {
  10. color:white;
  11. }
  12. /*
  13. Side-Menu Slider (JQuery) see banner.inc.php
  14. */
  15. ul#navigation {
  16. position: fixed;
  17. margin: 0px;
  18. padding: 0px;
  19. top: 200px;
  20. right: -10px;
  21. list-style: none;
  22. z-index:9999;
  23. }
  24. ul#navigation li {
  25. width: 73px;
  26. }
  27. ul#navigation li a {
  28. display: block;
  29. margin-left: 1px;
  30. width: 65px;
  31. height: 60px;
  32. background-color:#CFCFCF;
  33. background-repeat:no-repeat;
  34. background-position:center center;
  35. border:1px solid #AFAFAF;
  36. -moz-border-radius:10px 0px 0px 10px;
  37. -webkit-border-bottom-right-radius: 10px;
  38. -webkit-border-top-right-radius: 10px;
  39. -khtml-border-bottom-right-radius: 10px;
  40. -khtml-border-top-right-radius: 10px;
  41. -moz-box-shadow: 0px 4px 3px #000;
  42. opacity: 0.6;
  43. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  44. -webkit-box-shadow: 0px 4px 3px #000;
  45. }
  46. ul#navigation .help a {
  47. -moz-border-radius:8px 0 0 8px;
  48. -moz-box-shadow:0 2px 2px #000000;
  49. background-color:#879DAA;
  50. background-position:center center;
  51. background-repeat:no-repeat;
  52. border:1px solid #FFFFFF;
  53. display:block;
  54. height:44px;
  55. margin-left:50px;
  56. opacity:0.6;
  57. width:65px;
  58. padding: 6px 0 8px 6px;
  59. }
  60. ul#navigation .report a {
  61. -moz-border-radius:8px 0 0 8px;
  62. -moz-box-shadow:0 2px 2px #000000;
  63. background-color:#8fd400;
  64. background-position:center center;
  65. background-repeat:no-repeat;
  66. border:1px solid #FFFFFF;
  67. display:block;
  68. height:44px;
  69. margin-left:50px;
  70. opacity:0.6;
  71. width:65px;
  72. padding: 6px 0 8px 6px;
  73. }
  74. ul#navigation .student a {
  75. -moz-border-radius:8px 0 0 8px;
  76. -moz-box-shadow:0 2px 2px #000000;
  77. background-color:#b27651 ;
  78. background-position:center center;
  79. background-repeat:no-repeat;
  80. border:1px solid #FFFFFF;
  81. display:block;
  82. height:44px;
  83. margin-left:50px;
  84. opacity:0.6;
  85. width:65px;
  86. padding-bottom: 8px;
  87. }
  88. ul#navigation .user-online a {
  89. -moz-border-radius:8px 0 0 8px;
  90. -moz-box-shadow:0 2px 2px #000000;
  91. background-color:#ccbc67 ;
  92. background-position:center center;
  93. background-repeat:no-repeat;
  94. border:1px solid #FFFFFF;
  95. display:block;
  96. height:44px;
  97. margin-left:50px;
  98. opacity:0.6;
  99. width:65px;
  100. padding: 6px 0 8px 6px;
  101. }
  102. /* Other colors for other tabs in the earth tones */
  103. ul#navigation .user-connect a {
  104. -moz-border-radius:8px 0 0 8px;
  105. -moz-box-shadow:0 2px 2px #000000;
  106. background-color:#fac97a ;
  107. background-position:center center;
  108. background-repeat:no-repeat;
  109. border:1px solid #FFFFFF;
  110. display:block;
  111. height:44px;
  112. margin-left:50px;
  113. opacity:0.6;
  114. width:65px;
  115. padding: 6px 0 8px 6px;
  116. }
  117. ul#navigation .student-connect a {
  118. -moz-border-radius:8px 0 0 8px;
  119. -moz-box-shadow:0 2px 2px #000000;
  120. background-color:#d0d5d1 ;
  121. background-position:center center;
  122. background-repeat:no-repeat;
  123. border:1px solid #FFFFFF;
  124. display:block;
  125. height:44px;
  126. margin-left:50px;
  127. opacity:0.6;
  128. width:65px;
  129. padding: 6px 0 8px 6px;
  130. }
  131. #center {
  132. margin: 0 190px 0 0;
  133. padding: 10px 0 40px 0;
  134. min-height: 300px;
  135. background-color: #fff;
  136. }
  137. .courseadminview table td a, .Authoringview table td a {
  138. font-weight: bold;
  139. font-size:13px;
  140. margin-left:2px;
  141. }
  142. /* Student view */
  143. .Authoringview {
  144. position: relative;
  145. width: 80%;
  146. margin: 25px auto 10px;
  147. padding: 10px;
  148. }
  149. /* Teacher view*/
  150. .courseadminview, .platformadminview {
  151. position: relative;
  152. width: 80%;
  153. margin: 25px auto 10px;
  154. padding: 10px;
  155. -moz-border-radius:5px;
  156. border-radius:5px;
  157. border:1px solid #E1E1E0;
  158. }
  159. .Authoringview table td a {
  160. font-weight: bold;
  161. }
  162. .invisible a:link, .invisible a:visited {
  163. color: #999;
  164. }
  165. a.invisible:link, a.invisible:visited {
  166. color: #999;
  167. }
  168. .clear {
  169. clear: both;
  170. line-height: 0px;
  171. height: 0;
  172. }
  173. #sitename {
  174. margin: 0;
  175. }
  176. #institution {
  177. background-repeat:no-repeat;
  178. height:80px;
  179. overflow:hidden;
  180. margin-left:4%;
  181. margin-top:1%;
  182. }
  183. #my_courses {
  184. float:right;
  185. height:16px;
  186. padding-right:4%;
  187. }
  188. /* The tool shortcuts */
  189. #toolshortcuts {
  190. clear:right;
  191. margin-left:auto;
  192. margin-right:auto;
  193. text-align:right;
  194. width:92%;
  195. }
  196. footer a:link, footer a:visited {
  197. color:#f1d40d;
  198. }
  199. /*
  200. NAVIGATION MENU
  201. */
  202. #toolnav {
  203. float:right;
  204. margin:-7px 0 0 -5%;
  205. overflow:hidden;
  206. padding:0;
  207. position:absolute;
  208. right:0px;
  209. }
  210. #toolnav img {
  211. float: left;
  212. width: 25px;
  213. height: 25px;
  214. margin: 0 4px 0 0;
  215. *margin: 0 2px 0 0; /* IE7 and below */
  216. margin: 0 2px 0 0\0/IE8+9; /* IE8 + 9 + IE10pp4 */
  217. }
  218. /* Hide from IE5-mac. Only IE-win sees this. \*/
  219. * html #toolnav {
  220. margin-right: 0px;
  221. }
  222. * html #center {
  223. height: 1%;
  224. margin-left: 0;
  225. }
  226. /*
  227. course navigation menu as a definition list
  228. */
  229. #swap_menu_link {
  230. float: left;
  231. }
  232. #toolnavbox {
  233. border: 1px solid #4271b5;
  234. float: left;
  235. margin: 0 0 0 10px;
  236. padding: 0;
  237. }
  238. #toolnavbox dl {
  239. background: transparent;
  240. font-size: 12px;
  241. margin: 0 auto;
  242. text-align: center;
  243. width: 160px;
  244. }
  245. #toolnavbox dt {
  246. background: transparent;
  247. border-bottom: 1px solid #fff;
  248. color: #000;
  249. font-size: 12px;
  250. font-weight: bold;
  251. margin: 0;
  252. text-align: center;
  253. }
  254. #toolnavbox dd {
  255. background: #E5EDF9;
  256. border-bottom:1px solid #fff;
  257. color: #009;
  258. margin: 0;
  259. text-align: left;
  260. }
  261. #toolnavlist a, #toolnavlist a:link {
  262. background: #E5EDF9;
  263. color: #4171b5;
  264. display: block;
  265. margin: 0;
  266. padding: 5px 5px 5px 10px;
  267. text-decoration: none;
  268. line-height:24px;
  269. }
  270. #toolnavlist a:hover, #toolnavlist a#here {
  271. background: #fff;
  272. color:#4171b5;
  273. }
  274. /* Hide from IE5-mac. Only IE-win sees this. \*/
  275. * html #toolnav {
  276. margin-right: 0px;
  277. }
  278. * html #center {
  279. height: 1%;
  280. margin-left: 0;
  281. }
  282. /* Warning and error messages to the user */
  283. .confirmation-message img, .error-message img, .normal-message img, .warning-message img {
  284. position: relative;
  285. margin-top: 5px;
  286. margin-bottom: 10px;
  287. float:left;
  288. }
  289. /*****************************************************
  290. * COURSE HOMEPAGE *
  291. *****************************************************/
  292. /* various sections in course-home.php file */
  293. #toolremove {
  294. width: 40%;
  295. color: #f00;
  296. font-weight: bold;
  297. margin: 10px auto;
  298. padding: 10px;
  299. border: 2px solid #f00;
  300. }
  301. #courseintro {
  302. clear: both;
  303. width: 80%;
  304. margin: 10px auto;
  305. padding: 10px;
  306. }
  307. #courseintro_icons {
  308. clear: both;
  309. width: 80%;
  310. /* margin: 10px auto; */
  311. }
  312. .everybodyview {
  313. position: relative; /* to avoid the IE peekabo bug ?*/
  314. -moz-border-radius:5px;
  315. border-radius:5px;
  316. border:1px solid #E1E1E0;
  317. width: 80%;
  318. margin: 10px auto;
  319. padding: 10px;
  320. }
  321. .viewcaption {
  322. position: relative;
  323. top: -20px;
  324. font-size: 12px;
  325. font-weight: bold;
  326. color: #aaa;
  327. background-color: #fff;
  328. padding: 0 4px;
  329. }
  330. .tool-icon {
  331. /*margin-bottom: -3px;*/
  332. }
  333. /**********************************************
  334. * DOCUMENT MODULE *
  335. **********************************************/
  336. /* styles from the document.php file */
  337. .comment {
  338. margin-left: 30px;
  339. }
  340. /* styles from the upload.php file */
  341. dl.upload_option {
  342. margin: 1em 0;
  343. padding: 0;
  344. }
  345. .upload_option dt {
  346. font-weight:bold;
  347. margin:0;
  348. }
  349. .upload_option dd {
  350. margin:0;
  351. }
  352. .document_owner {
  353. text-align: right;
  354. }
  355. /**********************************************
  356. * DROPBOX MODULE *
  357. **********************************************/
  358. /* styles from dropbox.php file */
  359. .dropbox_detail {
  360. font-size: small
  361. }
  362. .dropbox_date {
  363. color: #737780;
  364. font-style: italic;
  365. font-weight: normal;
  366. }
  367. .dropbox_person {
  368. font-weight: bold
  369. }
  370. .dropbox_listTitle {
  371. color: #000000;
  372. }
  373. .dropbox_feedback {
  374. font-size: x-small;
  375. height: 50px;
  376. width: 200px;
  377. overflow: auto
  378. }
  379. .dropbox_feedbacks {
  380. height: 250px;
  381. width: 100%;
  382. overflow: auto
  383. }
  384. /**********************************************
  385. * CHAT MODULE *
  386. **********************************************/
  387. /* styles for chat / conference tools */
  388. #chat_entermessage {
  389. background-color: #D6E5FA;
  390. border-top: 1px solid #dcdcdc;
  391. padding: 5px;
  392. margin: 0;
  393. }
  394. /* the following for the greyed out elements */
  395. a.nobold:link, a.nobold:visited, a.nobold:active {
  396. font-weight: normal;
  397. color: #999;
  398. margin: 0 0 0 25px;
  399. }
  400. a.nobold:hover {
  401. font-weight: normal;
  402. color: #999;
  403. text-decoration: underline;
  404. margin: 0 0 0 25px;
  405. }
  406. .alternativeBgLight {
  407. background-color: #f5f5f5;
  408. border: 1px solid #dcdcdc;
  409. border-collapse: collapse;
  410. }
  411. .alternativeBgDark {
  412. background-color: #ccf;
  413. border: 1px solid #dcdcdc;
  414. border-collapse: collapse;
  415. }
  416. /*****************************************************
  417. * DATA TABLE STYLES *
  418. *****************************************************/
  419. .cell_header {
  420. background-color: #EEEEFF;
  421. font-weight:bold;
  422. text-align:left;
  423. padding-left:5px;
  424. }
  425. /* admin page tool list definitions */
  426. .tool_list dt {
  427. font-weight: bold;
  428. }
  429. .tool_list dd {
  430. margin: 0;
  431. padding: 4px 0 0 10px;
  432. }
  433. .home_news {
  434. width: 45%;
  435. float: right;
  436. position: relative;
  437. margin: 0;
  438. padding: 0px;
  439. padding-top: 8px;
  440. background: #fff;
  441. }
  442. label.left {
  443. float: left;
  444. width: 15em;
  445. margin: 0 0 0.5em 0;
  446. }
  447. form br {
  448. clear: both;
  449. }
  450. /* Fix for alignment problem in IE-Win browsers */
  451. /* Hide from IE5-mac. Only IE-win sees this. \*/
  452. * html .label {
  453. margin-right: 10px;
  454. }
  455. * html .data {
  456. height: 1%;
  457. margin-left: 0;
  458. }
  459. .required {
  460. /* color: #f00;
  461. font-weight: bold;*/
  462. }
  463. /* Admin section */
  464. div.admin_section {
  465. -moz-border-radius:10px;
  466. border-radius:10px;
  467. border:1px solid #E1E1E0;
  468. width: 42%;
  469. float: left;
  470. padding: 5px;
  471. margin: 10px 20px;
  472. min-height:280px;
  473. }
  474. div.admin_section h4 {
  475. margin: 5px 0px 5px 5px;
  476. /*padding: 0px 0px 5px 0px; */
  477. border-bottom: 1px solid #E1E1E0;
  478. width: 100%;
  479. }
  480. .admin_section li {
  481. background-repeat:no-repeat;
  482. list-style:none;
  483. background-position: center left;
  484. }
  485. .admin_section li a {
  486. margin-left:15px;
  487. }
  488. .admin_section li input {
  489. -moz-border-radius-bottomleft:5px;
  490. -moz-border-radius-bottomright:5px;
  491. -moz-border-radius-topleft:5px;
  492. -moz-border-radius-topright:5px;
  493. border:1px solid #E1E1E0;
  494. }
  495. .user_course_category {
  496. background-color: #E5EDF9;
  497. font-weight: bold;
  498. color: #666;
  499. list-style-type: none;
  500. margin: 5px;
  501. padding: 5px;
  502. }
  503. .sessions_list {
  504. line-height: 20px;
  505. margin-top: 20px;
  506. }
  507. .sessions_list_inactive {
  508. line-height: 20px;
  509. }
  510. .session_box {
  511. border: 1px solid #DCE5F3;
  512. /* font-weight: bold; */
  513. color: #666;
  514. list-style-type: none;
  515. margin:5px 5px 10px 5px;
  516. padding: 5px;
  517. background-color:#FFF;
  518. -webkit-border-radius: 10px;
  519. -moz-border-radius: 10px;
  520. border-radius: 10px;
  521. }
  522. .sub_session_box {
  523. border: 1px solid #DCE5F3;
  524. /* font-weight: bold; */
  525. color: #666;
  526. list-style-type: none;
  527. margin:5px 5px 10px 0px;
  528. padding: 5px;
  529. background-color:#FFF;
  530. -webkit-border-radius: 10px;
  531. -moz-border-radius: 10px;
  532. border-radius: 10px;
  533. }
  534. .sub_session_box_title {
  535. margin-bottom: 10px;
  536. background-color:#F9F9F9;
  537. }
  538. .session_box_title {
  539. margin-bottom: 10px;
  540. background-color:#F9F9F9;
  541. }
  542. .admin_section {
  543. }
  544. .session_box_coach {
  545. }
  546. /***************************************************************
  547. * CHAMILO CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
  548. ***************************************************************/
  549. .sectiontitle {
  550. background-color: #D2ECF5;
  551. border: 1px solid #ABDAEA;
  552. font-weight: bold;
  553. color: #666666;
  554. list-style-type: none;
  555. margin: 5px 5px 5px 0px;
  556. padding: 5px;
  557. font-size: 14px;
  558. }
  559. .sectioncomment {
  560. color: #000000;
  561. margin: 5px 5px 5px 0px;
  562. padding: 5px;
  563. }
  564. .sectionvalue {
  565. list-style-type: none;
  566. margin: 5px 5px 5px 0px;
  567. padding: 5px;
  568. }
  569. /*****************************************************
  570. * ANNOUNCEMENTS *
  571. *****************************************************/
  572. .announcements_datum {
  573. font-size: 12px;
  574. font-style: italic;
  575. color: #666666;
  576. }
  577. /*****************************************************
  578. * SYSTEM ANNOUNCEMENTS *
  579. *****************************************************/
  580. div.system_announcement {
  581. padding: 10px;
  582. border: 1px solid #ddd;
  583. -moz-border-radius-topright : 5px;
  584. -moz-border-radius-topleft : 5px;
  585. -moz-border-radius-bottomright : 5px;
  586. -moz-border-radius-bottomleft : 5px;
  587. min-height:20px;
  588. }
  589. .system_announcement {
  590. font: bold 100% arial, sans-serif, sans;
  591. }
  592. .system_announcement_content {
  593. font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
  594. }
  595. .system_announcements {
  596. padding-top: 10px;
  597. padding-bottom: 10px;
  598. }
  599. .system_announcements h3 {
  600. padding-left:70px;
  601. padding-top: 30px;
  602. }
  603. .system_announcement_title {
  604. font-weight: bold;
  605. font-size: 120%;
  606. float:left;
  607. }
  608. .system_announcement_date {
  609. font-color: #ccc;
  610. float:right;
  611. }
  612. /* **** BLOG **** */
  613. span.blog_title {
  614. font-size: 20px;
  615. font-weight: bold;
  616. color: #2A4B74;
  617. }
  618. span.blog_subttitle {
  619. font-size: 12px;
  620. }
  621. td.blog_left {
  622. margin-right: 5px;
  623. padding-right: 5px;
  624. border-right: 1px solid #dddddd;
  625. }
  626. td.blog_right {
  627. padding-left: 10px;
  628. }
  629. td.blog_menu_title {
  630. background-color: #dddddd;
  631. color: #2A4B74;
  632. font-weight: bold;
  633. font-size: 11px;
  634. padding: 2px;
  635. }
  636. td.blog_menu {
  637. border-bottom: 1px dashed #dddddd;
  638. border-right: 1px dashed #dddddd;
  639. border-left: 1px dashed #dddddd;
  640. padding: 10px;
  641. }
  642. td.blog_menu ul {
  643. margin-top: 0;
  644. margin-right: 0;
  645. margin-bottom: 0;
  646. margin-left: 15px;
  647. padding: 0;
  648. }
  649. td.blog_menu ul li {
  650. }
  651. span.blogpost_title {
  652. display: block;
  653. font-size: 18px;
  654. font-weight: bold;
  655. color: #2A4B74;
  656. padding-bottom: 5px;
  657. }
  658. span.blogpost_date {
  659. display: block;
  660. font-size: 12px;
  661. font-weight: bold;
  662. color: #333333;
  663. padding-bottom: 10px;
  664. }
  665. span.blogpost_info {
  666. display: block;
  667. color: #333333;
  668. border-top: 1px solid #dddddd;
  669. margin-top: 5px;
  670. }
  671. table.newBlog {
  672. border: 1px solid #dddddd;
  673. margin-bottom: 10px;
  674. margin-top: 10px;
  675. padding: 10px;
  676. background-color: #f6f6f6;
  677. }
  678. table.newTask {
  679. border: 1px solid #dddddd;
  680. margin-bottom: 10px;
  681. margin-top: 10px;
  682. padding: 10px;
  683. background-color: #f6f6f6;
  684. }
  685. table.new_comment {
  686. border: 1px solid #dddddd;
  687. margin-bottom: 10px;
  688. margin-top: 10px;
  689. padding: 10px;
  690. background-color: #F4F4F4;
  691. }
  692. div.blogpost_comment {
  693. border-top: 1px dashed #dddddd;
  694. border-right: 1px dashed #dddddd;
  695. border-bottom: 1px dashed #dddddd;
  696. border-left: 1px dashed #dddddd;
  697. margin-bottom: 10px;
  698. padding: 10px;
  699. background-color: white;
  700. z-index: -1;
  701. }
  702. span.blogpost_comment_title {
  703. display: block;
  704. font-size: 14px;
  705. font-weight: bold;
  706. color: #1657A9;
  707. padding-bottom: 5px;
  708. }
  709. span.blogpost_comment_date {
  710. display: block;
  711. font-size: 10px;
  712. font-weight: bold;
  713. color: #333333;
  714. padding-bottom: 10px;
  715. }
  716. span.blogpost_comment_info {
  717. font-size: 10px;
  718. display: block;
  719. color: #333333;
  720. border-top: 1px solid #dddddd;
  721. margin-top: 10px;
  722. }
  723. div.blogpost {
  724. border: 1px solid #DDDDDD;
  725. background-color: #ECECEC;
  726. margin-bottom: 15px;
  727. padding: 10px;
  728. }
  729. div.comments {
  730. border: 1px solid #dddddd;
  731. margin-bottom: 10px;
  732. margin-top: 10px;
  733. padding: 10px;
  734. background-color: #F4F4F4;
  735. margin-left:50px;
  736. }
  737. .attachment_comment {
  738. color: #737780;
  739. font-style: italic;
  740. font-weight: normal;
  741. }
  742. .link {
  743. text-decoration: none;
  744. font-weight : bold;
  745. color : #1657A9;
  746. cursor: pointer
  747. }
  748. .link:hover {
  749. text-decoration: none;
  750. color: #abd9f1;
  751. font-weight: bold;
  752. cursor: pointer
  753. }
  754. /*****************************************************
  755. * INSTALLATION *
  756. *****************************************************/
  757. #installation_steps {
  758. float:left;
  759. background-color: #EFEFEF;
  760. }
  761. .current_step {
  762. font-weight: bold;
  763. }
  764. /************************************************************
  765. styles below here are not necessarily used in the current
  766. release and the CVS files, they are from earlier versions,
  767. and have been left untouched for anyone needing them in
  768. their own platform ...
  769. *************************************************************/
  770. .topBanner a:link, .topBanner a:active, .topBanner a:visited {
  771. text-decoration:none;
  772. color:white;
  773. }
  774. .topBanner table {
  775. text-decoration:none;
  776. }
  777. .topBanner a:hover {
  778. text-decoration:underline;
  779. }
  780. .topBanner td {
  781. border-top: solid White 1px;
  782. }
  783. .alternativeBgLight {
  784. background-color: #f5f5f5;
  785. }
  786. .alternativeBgDark {
  787. background-color: #e6e6e6
  788. }
  789. .forms {
  790. letter-spacing: normal;
  791. text-align: justify;
  792. text-indent: 3pt;
  793. word-spacing: normal;
  794. padding: 2px 5px;
  795. }
  796. .formsTips {
  797. text-align: justify;
  798. text-indent: 15pt;
  799. word-spacing: normal;
  800. }
  801. /*
  802. input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
  803. padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
  804. */
  805. .warn {
  806. border: thin double Silver;
  807. margin-left: 15px;
  808. margin-right: 15px;
  809. font-family: serif;
  810. color: Red;
  811. padding-left: 25px;
  812. -moz-border-radius-bottomleft:5px;
  813. -moz-border-radius-bottomright:5px;
  814. -moz-border-radius-topleft:5px;
  815. -moz-border-radius-topright:5px;
  816. border:1px solid #E1E1E0;
  817. }
  818. .small {
  819. font-size: 11px
  820. }
  821. .xsmall {
  822. font-size: 10px
  823. }
  824. .xxsmall {
  825. font-size: 9px
  826. }
  827. #glossary_menu li {
  828. LIST-STYLE-TYPE: none;
  829. display: inline;
  830. padding-left:5px;
  831. }
  832. .glossary_divider {
  833. text-transform: capitalize;
  834. background-color: #CCCCCC;
  835. padding: 3px;
  836. font-weight: bold;
  837. margin-bottom: 3px;
  838. margin-top: 10px;
  839. }
  840. .glossary_word {
  841. background-color: #F7F7F7;
  842. padding: 3px;
  843. font-weight: bold;
  844. margin-bottom: 3px;
  845. margin-top: 10px;
  846. }
  847. /*
  848. * TABBED INTERFACE
  849. */
  850. #tabbed_menu {
  851. width: 100%;
  852. height: 20px;
  853. border-bottom-width: 1px;
  854. border-bottom-style: solid;
  855. border-bottom-color: #666666;
  856. margin-bottom: 20px;
  857. }
  858. #tabbed_menu #tabbed_menu_tabs li {
  859. margin: 0 10;
  860. padding: 0;
  861. display: inline;
  862. list-style-type: none;
  863. }
  864. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  865. float: left;
  866. background: #f3f3f3;
  867. font-weight: bold;
  868. padding: 2px 10px 2px 10px;
  869. margin-right: 4px;
  870. border: 1px solid #cccccc;
  871. text-decoration: none;
  872. color: #666;
  873. }
  874. #tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
  875. border: 1px solid #666666;
  876. border-bottom: 1px solid #fff;
  877. background: #fff;
  878. color: #000;
  879. }
  880. #WCAG-editor {
  881. border: 1px #DCDCDC solid;
  882. background-color: #F0F0F0;
  883. width: 100%;
  884. }
  885. #WCAG-editor .title {
  886. padding: 2px;
  887. background-color: #DCDCDC;
  888. text-align: center;
  889. color: #000000;
  890. font-weight: bold;
  891. }
  892. #WCAG-editor .body {
  893. padding-top: 5px;
  894. padding-left: 5px;
  895. padding-right: 13px;
  896. padding-bottom: 5px;
  897. }
  898. #WCAG-editor textarea {
  899. margin-left: 0px;
  900. margin-right: 0px;
  901. width: 100%;
  902. height: 180px;
  903. border: 1px #DCDCDC solid;
  904. }
  905. #WCAG-editor input {
  906. width: 100%;
  907. -moz-border-radius-bottomleft:5px;
  908. -moz-border-radius-bottomright:5px;
  909. -moz-border-radius-topleft:5px;
  910. -moz-border-radius-topright:5px;
  911. border:1px solid #E1E1E0;
  912. }
  913. /* don't work on IE 6 */
  914. #WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
  915. width: auto;
  916. -moz-border-radius-bottomleft:5px;
  917. -moz-border-radius-bottomright:5px;
  918. -moz-border-radius-topleft:5px;
  919. -moz-border-radius-topright:5px;
  920. border:1px solid #E1E1E0;}
  921. /* only for IE6 */
  922. #WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
  923. width: auto;
  924. }
  925. #WCAG-content img {
  926. float: left;
  927. margin-right: 5px;
  928. margin-bottom: 5px;
  929. }
  930. #WCAG-content p {
  931. text-align: justify;
  932. }
  933. /* hack for IE < 7 */
  934. #course_description input {
  935. width: auto;
  936. -moz-border-radius-bottomleft:5px;
  937. -moz-border-radius-bottomright:5px;
  938. -moz-border-radius-topleft:5px;
  939. -moz-border-radius-topright:5px;
  940. border:1px solid #E1E1E0;
  941. }
  942. #course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
  943. width: 100%;
  944. }
  945. .WCAG-form textarea {
  946. width: 100%;
  947. height: 180px;
  948. }
  949. .skip {
  950. display: none;
  951. }
  952. /* Survey */
  953. #survey_title {
  954. background-color:#dcdcdc;
  955. color:#000;
  956. padding:2px;
  957. }
  958. #survey_subtitle {
  959. background-color:#dcdcdc;
  960. color:#000;
  961. padding:2px;
  962. }
  963. .survey_content {
  964. background-color:#a0e5fc;
  965. color:#264269;
  966. padding:5px;
  967. border: 1px solid #999;
  968. margin-top: 4px;
  969. }
  970. .survey_question_wrapper {
  971. border: 1px solid #999;
  972. margin-top:4px;
  973. }
  974. .survey_question {
  975. /* 264269 4271b5 E5EDF9 */
  976. background-color:#E5EDF9;
  977. color:#999;
  978. padding:5px;/*border: 1px solid #264269;*/
  979. }
  980. .survey_question_options {
  981. /* 264269 4271b5 E5EDF9 */
  982. background-color:#FFF;
  983. color:#000;
  984. padding:5px;/*border: 1px solid #264269;*/
  985. }
  986. /*
  987. Added: to fit img and blocks in home page
  988. */
  989. #hellomindfactory {
  990. border: 1px solid #ccc;
  991. margin:-14px 0 0 0;
  992. width:690px;
  993. height:428px;
  994. }
  995. #tophellomindfactory {
  996. margin: 10px 5px 5px 5px;
  997. height:200px;
  998. width:680px;
  999. }
  1000. #bottomhellomindfactory {
  1001. margin: 5px;
  1002. height:200px;
  1003. width:680px;
  1004. }
  1005. /*
  1006. .copyright {
  1007. display:none;
  1008. }
  1009. */
  1010. /* Quizzes tool */
  1011. .quiz_export_link {
  1012. float: right;
  1013. }
  1014. /* Learning path */
  1015. #show_audiorecorder_div {
  1016. background:#F0F0F0;
  1017. border:1px solid #999999;
  1018. font-weight:bold;
  1019. padding:2px;
  1020. width:350px;
  1021. }
  1022. /* Glossary tool */
  1023. .glossary-term {
  1024. margin: 1em;
  1025. background-color: #ffe99b;
  1026. padding: 0.5em 0.5em 1.8em 0;
  1027. -moz-border-radius: 0.5em;
  1028. }
  1029. .glossary-term-title {
  1030. margin: 2em 0 1em 0.5em;
  1031. font-weight: bold;
  1032. font-size: 120%;
  1033. }
  1034. .glossary-term-desc {
  1035. margin-left: 1em;
  1036. }
  1037. .glossary-term-action-links {
  1038. float: right;
  1039. }
  1040. .glossary-term-edit-form {
  1041. margin: 1em;
  1042. background-color: #FFE4C4;
  1043. padding: 0.5em 0.5em 2em 0;
  1044. -moz-border-radius: 0.5em;
  1045. }
  1046. .glossary-term-edit-desc {
  1047. font-weight: bold;
  1048. font-size: 120%;
  1049. }
  1050. .glossary-term-edit-title {
  1051. font-weight: bold;
  1052. font-size: 120%;
  1053. }
  1054. .glossary-add-form {
  1055. font-weight: bold;
  1056. font-size: 120%;
  1057. margin: 1em;
  1058. }
  1059. .glossary-orderby-link {
  1060. float:right;
  1061. margin: 1em;
  1062. }
  1063. .glossary-msg-error {
  1064. color: #FF0000;
  1065. display :none;
  1066. font-weight: normal;
  1067. font-size: 80%;
  1068. }
  1069. /* Notebook */
  1070. .notebook-add-form {
  1071. margin: 1em;
  1072. background-color: #c3d9ff;
  1073. padding: 1em 1em;
  1074. }
  1075. .notebook-add-desc-textarea {
  1076. background-color: #f2f5f8;
  1077. border-color: #ffe99b;
  1078. overflow: hidden;
  1079. }
  1080. .notebook-add-title-text {
  1081. background-color: #f2f5f8;
  1082. border-color: #ffe99b;
  1083. }
  1084. .notebook-edit-desc-textarea {
  1085. background-color: #e0ecff;
  1086. border-color: #ffe99b;
  1087. overflow: hidden;
  1088. }
  1089. .notebook-edit-title-text {
  1090. background-color: #e0ecff;
  1091. border-color: #ffe99b;
  1092. }
  1093. .notebook-msg-error {
  1094. color: #FF0000;
  1095. display :none;
  1096. background-color: #ffe99b;
  1097. width: 40%;
  1098. }
  1099. .notebook-list {
  1100. margin: 1em 1em 0em 1em;
  1101. background-color: #79b;
  1102. padding: 0.3em 0.3em;
  1103. -moz-border-radius: 0.5em;
  1104. }
  1105. .notebook-title-list {
  1106. color : #fff;
  1107. padding: 0.3em 0.3em;
  1108. font-weight: bold;
  1109. font-size: 120%;
  1110. }
  1111. .notebook-desc-list {
  1112. margin: 0em;
  1113. background-color: #f2f5f8;
  1114. padding: 0.5em 0.3em 2em 0.3em;
  1115. border: 1px solid #79b;
  1116. }
  1117. .notebook-term-action-links {
  1118. padding: 0.3em 0.3em;
  1119. width: 50%;
  1120. color : #fff;
  1121. }
  1122. .notebook-orderby-link {
  1123. text-align:right;
  1124. margin-right: 1em;
  1125. }
  1126. .notebook-search-title {
  1127. text-align:right;
  1128. margin: 1em;
  1129. }
  1130. .notebook-date-information {
  1131. color : #fff;
  1132. padding: 0.3em;
  1133. font-size: 120%;
  1134. font-weight: bold;
  1135. }
  1136. /* Gradebook */
  1137. .resource-deleted {
  1138. color:#990000;
  1139. }
  1140. .gradebook-table-header {
  1141. border: 1px solid rgb(153, 153, 153);
  1142. background: rgb(240, 240, 240) none repeat scroll 0% 0%;
  1143. }
  1144. .gradebook-table-body {
  1145. border: 1px solid rgb(153, 153, 153);
  1146. background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  1147. }
  1148. .label_result {
  1149. float: left;
  1150. width: 25%;
  1151. text-align: left;
  1152. padding-top:8px;
  1153. }
  1154. .formw_result {
  1155. width: 75%;
  1156. float:left;
  1157. }
  1158. /* big actions */
  1159. .actionsbig {
  1160. background:#F8F8F8;
  1161. border-bottom:1px solid #999999;
  1162. border-top:1px solid #999999;
  1163. background-color:#E5EDF9;
  1164. height:100%;
  1165. padding:2px;
  1166. margin-bottom: 5px;
  1167. vertical-align:middle;
  1168. float:left;
  1169. width:100%;
  1170. }
  1171. .content_table {
  1172. padding:2px;
  1173. margin-bottom: 5px;
  1174. vertical-align:middle;
  1175. float:left;
  1176. width:100%;
  1177. }
  1178. .actionsbig a {
  1179. float:left;
  1180. padding-left:6px;
  1181. padding-right:12px;
  1182. text-align:center;
  1183. }
  1184. .actions-title {
  1185. background:#E5EDF9;
  1186. border-bottom:1px dotted #999999;
  1187. border-top:1px dotted #999999;
  1188. padding:4px;
  1189. margin-bottom: 5px;
  1190. font-size:14px;
  1191. font-weight:bolder;
  1192. vertical-align:middle;
  1193. }
  1194. .actions-message {
  1195. white-space: nowrap;
  1196. padding: 2px;
  1197. background-color: #D2ECF5;
  1198. border: 1px solid #ABDAEA;
  1199. }
  1200. /**********************************************
  1201. * EXERCISE TOOL *
  1202. **********************************************/
  1203. .exercice_form {
  1204. width: 300px;
  1205. }
  1206. span.checkbox {
  1207. width: 19px;
  1208. height: 25px;
  1209. padding: 0 5px 0 0;
  1210. display: block;
  1211. clear: left;
  1212. float: left;
  1213. }
  1214. span.radio {
  1215. width: 19px;
  1216. height: 25px;
  1217. padding: 0 5px 0 0;
  1218. display: block;
  1219. clear: left;
  1220. float: left;
  1221. }
  1222. .icon_image_content {
  1223. width:70px;
  1224. cursor:hand;
  1225. height:6em;
  1226. text-align: center;
  1227. padding-right: 10px;
  1228. padding-left: 0px;
  1229. border: 1px dotted #ccc;
  1230. background-color: #eee;
  1231. margin-right: 0.2em;
  1232. margin-top: 0.1em;
  1233. -moz-border-radius-topleft : 5px;
  1234. -moz-border-radius-bottomright : 5px;
  1235. -moz-border-radius-bottomleft : 5px;
  1236. -moz-border-radius-topright : 5px;
  1237. }
  1238. .icon_image_content:hover {
  1239. background-color: #fff;
  1240. border: 1px solid #ccc;
  1241. }
  1242. #expire_session div {
  1243. float:left;
  1244. padding-left:15px;
  1245. }
  1246. .question_menu {
  1247. list-style:none;
  1248. float:left;
  1249. }
  1250. .question_menu li {
  1251. float:left;
  1252. margin:0px;
  1253. }
  1254. #exercise_admin {
  1255. margin: 0;
  1256. padding: 0;
  1257. border: 0;
  1258. }
  1259. div#friend-header {
  1260. float:left;
  1261. width:100%;
  1262. line-height: 2.1em;
  1263. }
  1264. div#friend-header a {
  1265. padding-right:6px;
  1266. }
  1267. div.image_friend_network {
  1268. float:left;
  1269. /* border:1px solid #CCCCCC; */
  1270. margin:2px;
  1271. padding:4px;
  1272. height:125px;
  1273. width:82px;
  1274. z-index:5;
  1275. }
  1276. div.image_friend_network span {
  1277. overflow:hidden;
  1278. display:block;
  1279. height:92px;
  1280. margin: 0px 0px;
  1281. }
  1282. div.image_friend_network img {
  1283. vertical-align:middle;
  1284. }
  1285. div.image_friend_network center.friend {
  1286. overflow:hidden;
  1287. height:30px;
  1288. }
  1289. .friend_invitations {
  1290. margin: 0 0 4px 12px;
  1291. }
  1292. .u-m-answer {
  1293. float:left;
  1294. width:100%;
  1295. }
  1296. .u-m-answer p {
  1297. margin:4px;
  1298. }
  1299. .refresh {
  1300. background-repeat:no-repeat;
  1301. padding-left:20px;
  1302. padding-bottom:2px;
  1303. }
  1304. .portal {
  1305. background-repeat:no-repeat;
  1306. padding-left:28px;
  1307. padding-bottom:10px;
  1308. padding-top:8px;
  1309. }
  1310. .legal-terms {
  1311. height:150px;
  1312. overflow:auto;
  1313. background-color:#eee;
  1314. width:500px;
  1315. }
  1316. a.read {
  1317. font-weight:normal;
  1318. }
  1319. .actions-title {
  1320. background:#efefef;
  1321. border:1px solid #ccc;
  1322. padding:4px;
  1323. margin-bottom: 5px;
  1324. font-size:14px;
  1325. font-weight:bolder;
  1326. vertical-align:middle;
  1327. }
  1328. /* INVITATIONS */
  1329. .invitation_confirm {
  1330. padding-bottom: 10px;
  1331. border-bottom: 1px solid #D8DFEA;
  1332. }
  1333. .invitation_image {
  1334. width:110px;
  1335. }
  1336. /* DASHBOARD */
  1337. /* Head section */
  1338. #head {
  1339. background-color: #000;
  1340. height: 100px;
  1341. }
  1342. #head h1 {
  1343. line-height: 100px;
  1344. color: #FFF;
  1345. text-align: center;
  1346. text-indent: -9999em
  1347. }
  1348. /* End Head Section */
  1349. /* Columns section */
  1350. #columns .column {
  1351. float: left;
  1352. width: 50%;
  1353. /* Min-height: */
  1354. min-height: 400px;
  1355. height: auto !important;
  1356. height: 400px;
  1357. }
  1358. #columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
  1359. /* To add in 1.8.7*/
  1360. .session_box_title span {
  1361. font-size: 130%;
  1362. font-weight: bold;
  1363. }
  1364. .sub_session_box_title span {
  1365. font-size: 130%;
  1366. font-weight: bold;
  1367. }
  1368. #session_category_title {
  1369. font-size: 140%;
  1370. font-weight: bold;
  1371. padding: 2px 0px 5px 5px;
  1372. }
  1373. .courseadminview-activity-3col, .platformadminview-activity-3col {
  1374. -moz-border-radius:5px 5px 5px 5px;
  1375. border:1px solid #E1E1E0;
  1376. float:left;
  1377. margin:0px 20px 10px 2px;
  1378. padding:11px;
  1379. width:220px;
  1380. height:330px;
  1381. }
  1382. .courseadminview-activity-3col ul {
  1383. padding:0px 20px 10px 4px;
  1384. list-style-type:none;
  1385. height:240px;
  1386. margin-left:0px;
  1387. margin: 0px 0px 0px 0px ;
  1388. }
  1389. .courseadminview-activity-3col ul li {
  1390. padding:4px 0px 4px 0px;
  1391. }
  1392. #activity-3col {
  1393. width: 800px ;
  1394. margin-left: auto ;
  1395. margin-right: auto ;
  1396. }
  1397. .userportal-catalog-item {
  1398. -webkit-border-radius: 10px;
  1399. -moz-border-radius: 10px;
  1400. border-radius: 10px;
  1401. border: 1px solid #DCE5F3;
  1402. /*background-color:#F9F9F9; */
  1403. padding:0px 0px 0px 5px;
  1404. margin:5px;
  1405. /* height:40px; */
  1406. }
  1407. .userportal-catalog-item .catalog_box li span {
  1408. font-size:130%;
  1409. font-weight:bold;
  1410. margin-left:5px;
  1411. }
  1412. .catalog_box {
  1413. /* font-weight: bold; */
  1414. color: #666;
  1415. list-style-type: none;
  1416. margin:5px 5px 10px 5px;
  1417. padding: 5px;
  1418. background-color:#FFF;
  1419. }
  1420. .course-student-view-activity-3col {
  1421. -webkit-border-radius: 10px;
  1422. -moz-border-radius: 10px;
  1423. border-radius: 10px;
  1424. background-color:#FFFFFF;
  1425. height: 350px;
  1426. width: 800px ;
  1427. margin-left: auto ;
  1428. margin-right: auto ;
  1429. }
  1430. .course-student-view-activity-3col ul {
  1431. padding:10px 20px 10px 20px;
  1432. list-style-type:none;
  1433. /* height:240px; */
  1434. margin-left:0px;
  1435. margin: 0px 0px 0px 0px ;
  1436. float:left;
  1437. width : 280px;
  1438. }
  1439. .course-student-view-activity-3col ul li {
  1440. padding:5px 0px 4px 0px;
  1441. }
  1442. /* plugins divs */
  1443. #plugin-header {
  1444. margin-left:65px;
  1445. padding:5px;
  1446. }
  1447. #plugin-mycourses_menu {
  1448. padding:5px;
  1449. }
  1450. #plugin-mycourses_main {
  1451. padding:5px;
  1452. }
  1453. #plugin-footer {
  1454. padding:0px;
  1455. }
  1456. #id_contact_form .normal-message{
  1457. padding:20px;
  1458. }
  1459. /* Scroll effect */
  1460. .subnav-fixed .nav {
  1461. /* width: 938px; */
  1462. margin: 0 auto;
  1463. padding: 0 1px;
  1464. }
  1465. /* Text resize icons in header */
  1466. .resize_font { /* the canvas */
  1467. margin: 0 5px 0 5px;
  1468. }
  1469. .reset_font {
  1470. font-size: 1.2em;
  1471. color: gray;
  1472. border: 1px solid white;
  1473. padding: 2px;
  1474. }
  1475. .reset_font:hover {
  1476. border: 1px solid black;
  1477. cursor: pointer;
  1478. }
  1479. .increase_font {
  1480. font-size: 1.8em;
  1481. color: gray;
  1482. border: 1px solid white;
  1483. padding: 2px;
  1484. }
  1485. .increase_font:hover {
  1486. border: 1px solid black;
  1487. cursor: pointer;
  1488. }
  1489. .decrease_font {
  1490. font-size: 0.6em;
  1491. color: gray;
  1492. border: 1px solid white;
  1493. padding: 2px;
  1494. }
  1495. .decrease_font:hover {
  1496. border: 1px solid black;
  1497. cursor: pointer;
  1498. }
  1499. /* tips Abbr-plugin for FCKeditor */
  1500. abbr {
  1501. border-bottom: 1px dotted rgb(102, 102, 102);
  1502. background-color:#F00;
  1503. cursor: help;
  1504. }
  1505. #toolshortcuts_horizontal {
  1506. width:92%;
  1507. padding: 0px 0px 2px 0;
  1508. }