base_chamilo.css 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610
  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: #EFEFEF;
  551. border: 1px solid #CCCCCC;
  552. color: #333333;
  553. font-weight: bold;
  554. list-style-type: none;
  555. margin: 5px 5px 5px 0px;
  556. padding: 5px;
  557. font-size: 14px;
  558. }
  559. .sectioncomment {
  560. margin: 5px 5px 5px 0px;
  561. padding: 5px;
  562. }
  563. .sectionvalue {
  564. list-style-type: none;
  565. margin: 5px 5px 5px 0px;
  566. padding: 5px;
  567. }
  568. /*****************************************************
  569. * ANNOUNCEMENTS *
  570. *****************************************************/
  571. .announcements_datum {
  572. font-size: 12px;
  573. font-style: italic;
  574. color: #666666;
  575. }
  576. /*****************************************************
  577. * SYSTEM ANNOUNCEMENTS *
  578. *****************************************************/
  579. div.system_announcement {
  580. padding: 10px;
  581. border: 1px solid #ddd;
  582. -moz-border-radius-topright : 5px;
  583. -moz-border-radius-topleft : 5px;
  584. -moz-border-radius-bottomright : 5px;
  585. -moz-border-radius-bottomleft : 5px;
  586. min-height:20px;
  587. }
  588. .system_announcement {
  589. font: bold 100% arial, sans-serif, sans;
  590. }
  591. .system_announcement_content {
  592. font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
  593. }
  594. .system_announcements {
  595. padding-top: 10px;
  596. padding-bottom: 10px;
  597. }
  598. .system_announcements h3 {
  599. padding-left:70px;
  600. padding-top: 30px;
  601. }
  602. .system_announcement_title {
  603. font-weight: bold;
  604. font-size: 120%;
  605. float:left;
  606. }
  607. .system_announcement_date {
  608. font-color: #ccc;
  609. float:right;
  610. }
  611. /* **** BLOG **** */
  612. span.blog_title {
  613. font-size: 20px;
  614. font-weight: bold;
  615. color: #2A4B74;
  616. }
  617. span.blog_subttitle {
  618. font-size: 12px;
  619. }
  620. td.blog_left {
  621. margin-right: 5px;
  622. padding-right: 5px;
  623. border-right: 1px solid #dddddd;
  624. }
  625. td.blog_right {
  626. padding-left: 10px;
  627. }
  628. td.blog_menu_title {
  629. background-color: #dddddd;
  630. color: #2A4B74;
  631. font-weight: bold;
  632. font-size: 11px;
  633. padding: 2px;
  634. }
  635. td.blog_menu {
  636. border-bottom: 1px dashed #dddddd;
  637. border-right: 1px dashed #dddddd;
  638. border-left: 1px dashed #dddddd;
  639. padding: 10px;
  640. }
  641. td.blog_menu ul {
  642. margin-top: 0;
  643. margin-right: 0;
  644. margin-bottom: 0;
  645. margin-left: 15px;
  646. padding: 0;
  647. }
  648. td.blog_menu ul li {
  649. }
  650. span.blogpost_title {
  651. display: block;
  652. font-size: 18px;
  653. font-weight: bold;
  654. color: #2A4B74;
  655. padding-bottom: 5px;
  656. }
  657. span.blogpost_date {
  658. display: block;
  659. font-size: 12px;
  660. font-weight: bold;
  661. color: #333333;
  662. padding-bottom: 10px;
  663. }
  664. span.blogpost_info {
  665. display: block;
  666. color: #333333;
  667. border-top: 1px solid #dddddd;
  668. margin-top: 5px;
  669. }
  670. table.newBlog {
  671. border: 1px solid #dddddd;
  672. margin-bottom: 10px;
  673. margin-top: 10px;
  674. padding: 10px;
  675. background-color: #f6f6f6;
  676. }
  677. table.newTask {
  678. border: 1px solid #dddddd;
  679. margin-bottom: 10px;
  680. margin-top: 10px;
  681. padding: 10px;
  682. background-color: #f6f6f6;
  683. }
  684. table.new_comment {
  685. border: 1px solid #dddddd;
  686. margin-bottom: 10px;
  687. margin-top: 10px;
  688. padding: 10px;
  689. background-color: #F4F4F4;
  690. }
  691. div.blogpost_comment {
  692. border-top: 1px dashed #dddddd;
  693. border-right: 1px dashed #dddddd;
  694. border-bottom: 1px dashed #dddddd;
  695. border-left: 1px dashed #dddddd;
  696. margin-bottom: 10px;
  697. padding: 10px;
  698. background-color: white;
  699. z-index: -1;
  700. }
  701. span.blogpost_comment_title {
  702. display: block;
  703. font-size: 14px;
  704. font-weight: bold;
  705. color: #1657A9;
  706. padding-bottom: 5px;
  707. }
  708. span.blogpost_comment_date {
  709. display: block;
  710. font-size: 10px;
  711. font-weight: bold;
  712. color: #333333;
  713. padding-bottom: 10px;
  714. }
  715. span.blogpost_comment_info {
  716. font-size: 10px;
  717. display: block;
  718. color: #333333;
  719. border-top: 1px solid #dddddd;
  720. margin-top: 10px;
  721. }
  722. div.blogpost {
  723. border: 1px solid #DDDDDD;
  724. background-color: #ECECEC;
  725. margin-bottom: 15px;
  726. padding: 10px;
  727. }
  728. div.comments {
  729. border: 1px solid #dddddd;
  730. margin-bottom: 10px;
  731. margin-top: 10px;
  732. padding: 10px;
  733. background-color: #F4F4F4;
  734. margin-left:50px;
  735. }
  736. .attachment_comment {
  737. color: #737780;
  738. font-style: italic;
  739. font-weight: normal;
  740. }
  741. .link {
  742. text-decoration: none;
  743. font-weight : bold;
  744. color : #1657A9;
  745. cursor: pointer
  746. }
  747. .link:hover {
  748. text-decoration: none;
  749. color: #abd9f1;
  750. font-weight: bold;
  751. cursor: pointer
  752. }
  753. /*****************************************************
  754. * INSTALLATION *
  755. *****************************************************/
  756. #installation_steps {
  757. float:left;
  758. background-color: #EFEFEF;
  759. }
  760. .current_step {
  761. font-weight: bold;
  762. }
  763. /************************************************************
  764. styles below here are not necessarily used in the current
  765. release and the CVS files, they are from earlier versions,
  766. and have been left untouched for anyone needing them in
  767. their own platform ...
  768. *************************************************************/
  769. .topBanner a:link, .topBanner a:active, .topBanner a:visited {
  770. text-decoration:none;
  771. color:white;
  772. }
  773. .topBanner table {
  774. text-decoration:none;
  775. }
  776. .topBanner a:hover {
  777. text-decoration:underline;
  778. }
  779. .topBanner td {
  780. border-top: solid White 1px;
  781. }
  782. .alternativeBgLight {
  783. background-color: #f5f5f5;
  784. }
  785. .alternativeBgDark {
  786. background-color: #e6e6e6
  787. }
  788. .forms {
  789. letter-spacing: normal;
  790. text-align: justify;
  791. text-indent: 3pt;
  792. word-spacing: normal;
  793. padding: 2px 5px;
  794. }
  795. .formsTips {
  796. text-align: justify;
  797. text-indent: 15pt;
  798. word-spacing: normal;
  799. }
  800. /*
  801. input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
  802. padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
  803. */
  804. .warn {
  805. border: thin double Silver;
  806. margin-left: 15px;
  807. margin-right: 15px;
  808. font-family: serif;
  809. color: Red;
  810. padding-left: 25px;
  811. -moz-border-radius-bottomleft:5px;
  812. -moz-border-radius-bottomright:5px;
  813. -moz-border-radius-topleft:5px;
  814. -moz-border-radius-topright:5px;
  815. border:1px solid #E1E1E0;
  816. }
  817. .small {
  818. font-size: 11px
  819. }
  820. .xsmall {
  821. font-size: 10px
  822. }
  823. .xxsmall {
  824. font-size: 9px
  825. }
  826. #glossary_menu li {
  827. LIST-STYLE-TYPE: none;
  828. display: inline;
  829. padding-left:5px;
  830. }
  831. .glossary_divider {
  832. text-transform: capitalize;
  833. background-color: #CCCCCC;
  834. padding: 3px;
  835. font-weight: bold;
  836. margin-bottom: 3px;
  837. margin-top: 10px;
  838. }
  839. .glossary_word {
  840. background-color: #F7F7F7;
  841. padding: 3px;
  842. font-weight: bold;
  843. margin-bottom: 3px;
  844. margin-top: 10px;
  845. }
  846. /*
  847. * TABBED INTERFACE
  848. */
  849. #tabbed_menu {
  850. width: 100%;
  851. height: 20px;
  852. border-bottom-width: 1px;
  853. border-bottom-style: solid;
  854. border-bottom-color: #666666;
  855. margin-bottom: 20px;
  856. }
  857. #tabbed_menu #tabbed_menu_tabs li {
  858. margin: 0 10;
  859. padding: 0;
  860. display: inline;
  861. list-style-type: none;
  862. }
  863. #tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
  864. float: left;
  865. background: #f3f3f3;
  866. font-weight: bold;
  867. padding: 2px 10px 2px 10px;
  868. margin-right: 4px;
  869. border: 1px solid #cccccc;
  870. text-decoration: none;
  871. color: #666;
  872. }
  873. #tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
  874. border: 1px solid #666666;
  875. border-bottom: 1px solid #fff;
  876. background: #fff;
  877. color: #000;
  878. }
  879. #WCAG-editor {
  880. border: 1px #DCDCDC solid;
  881. background-color: #F0F0F0;
  882. width: 100%;
  883. }
  884. #WCAG-editor .title {
  885. padding: 2px;
  886. background-color: #DCDCDC;
  887. text-align: center;
  888. color: #000000;
  889. font-weight: bold;
  890. }
  891. #WCAG-editor .body {
  892. padding-top: 5px;
  893. padding-left: 5px;
  894. padding-right: 13px;
  895. padding-bottom: 5px;
  896. }
  897. #WCAG-editor textarea {
  898. margin-left: 0px;
  899. margin-right: 0px;
  900. width: 100%;
  901. height: 180px;
  902. border: 1px #DCDCDC solid;
  903. }
  904. #WCAG-editor input {
  905. width: 100%;
  906. -moz-border-radius-bottomleft:5px;
  907. -moz-border-radius-bottomright:5px;
  908. -moz-border-radius-topleft:5px;
  909. -moz-border-radius-topright:5px;
  910. border:1px solid #E1E1E0;
  911. }
  912. /* don't work on IE 6 */
  913. #WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
  914. width: auto;
  915. -moz-border-radius-bottomleft:5px;
  916. -moz-border-radius-bottomright:5px;
  917. -moz-border-radius-topleft:5px;
  918. -moz-border-radius-topright:5px;
  919. border:1px solid #E1E1E0;}
  920. /* only for IE6 */
  921. #WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
  922. width: auto;
  923. }
  924. #WCAG-content img {
  925. float: left;
  926. margin-right: 5px;
  927. margin-bottom: 5px;
  928. }
  929. #WCAG-content p {
  930. text-align: justify;
  931. }
  932. /* hack for IE < 7 */
  933. #course_description input {
  934. width: auto;
  935. -moz-border-radius-bottomleft:5px;
  936. -moz-border-radius-bottomright:5px;
  937. -moz-border-radius-topleft:5px;
  938. -moz-border-radius-topright:5px;
  939. border:1px solid #E1E1E0;
  940. }
  941. #course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
  942. width: 100%;
  943. }
  944. .WCAG-form textarea {
  945. width: 100%;
  946. height: 180px;
  947. }
  948. .skip {
  949. display: none;
  950. }
  951. /* Survey */
  952. #survey_title {
  953. background-color:#dcdcdc;
  954. color:#000;
  955. padding:2px;
  956. }
  957. #survey_subtitle {
  958. background-color:#dcdcdc;
  959. color:#000;
  960. padding:2px;
  961. }
  962. .survey_content {
  963. background-color:#a0e5fc;
  964. color:#264269;
  965. padding:5px;
  966. border: 1px solid #999;
  967. margin-top: 4px;
  968. }
  969. .survey_question_wrapper {
  970. border: 1px solid #999;
  971. margin-top:4px;
  972. }
  973. .survey_question {
  974. /* 264269 4271b5 E5EDF9 */
  975. background-color:#E5EDF9;
  976. color:#999;
  977. padding:5px;/*border: 1px solid #264269;*/
  978. }
  979. .survey_question_options {
  980. /* 264269 4271b5 E5EDF9 */
  981. background-color:#FFF;
  982. color:#000;
  983. padding:5px;/*border: 1px solid #264269;*/
  984. }
  985. /*
  986. Added: to fit img and blocks in home page
  987. */
  988. #hellomindfactory {
  989. border: 1px solid #ccc;
  990. margin:-14px 0 0 0;
  991. width:690px;
  992. height:428px;
  993. }
  994. #tophellomindfactory {
  995. margin: 10px 5px 5px 5px;
  996. height:200px;
  997. width:680px;
  998. }
  999. #bottomhellomindfactory {
  1000. margin: 5px;
  1001. height:200px;
  1002. width:680px;
  1003. }
  1004. /*
  1005. .copyright {
  1006. display:none;
  1007. }
  1008. */
  1009. /* Quizzes tool */
  1010. .quiz_export_link {
  1011. float: right;
  1012. }
  1013. /* Learning path */
  1014. #show_audiorecorder_div {
  1015. background:#F0F0F0;
  1016. border:1px solid #999999;
  1017. font-weight:bold;
  1018. padding:2px;
  1019. width:350px;
  1020. }
  1021. /* Glossary tool */
  1022. .glossary-term {
  1023. margin: 1em;
  1024. background-color: #ffe99b;
  1025. padding: 0.5em 0.5em 1.8em 0;
  1026. -moz-border-radius: 0.5em;
  1027. }
  1028. .glossary-term-title {
  1029. margin: 2em 0 1em 0.5em;
  1030. font-weight: bold;
  1031. font-size: 120%;
  1032. }
  1033. .glossary-term-desc {
  1034. margin-left: 1em;
  1035. }
  1036. .glossary-term-action-links {
  1037. float: right;
  1038. }
  1039. .glossary-term-edit-form {
  1040. margin: 1em;
  1041. background-color: #FFE4C4;
  1042. padding: 0.5em 0.5em 2em 0;
  1043. -moz-border-radius: 0.5em;
  1044. }
  1045. .glossary-term-edit-desc {
  1046. font-weight: bold;
  1047. font-size: 120%;
  1048. }
  1049. .glossary-term-edit-title {
  1050. font-weight: bold;
  1051. font-size: 120%;
  1052. }
  1053. .glossary-add-form {
  1054. font-weight: bold;
  1055. font-size: 120%;
  1056. margin: 1em;
  1057. }
  1058. .glossary-orderby-link {
  1059. float:right;
  1060. margin: 1em;
  1061. }
  1062. .glossary-msg-error {
  1063. color: #FF0000;
  1064. display :none;
  1065. font-weight: normal;
  1066. font-size: 80%;
  1067. }
  1068. /* Notebook */
  1069. .notebook-add-form {
  1070. margin: 1em;
  1071. background-color: #c3d9ff;
  1072. padding: 1em 1em;
  1073. }
  1074. .notebook-add-desc-textarea {
  1075. background-color: #f2f5f8;
  1076. border-color: #ffe99b;
  1077. overflow: hidden;
  1078. }
  1079. .notebook-add-title-text {
  1080. background-color: #f2f5f8;
  1081. border-color: #ffe99b;
  1082. }
  1083. .notebook-edit-desc-textarea {
  1084. background-color: #e0ecff;
  1085. border-color: #ffe99b;
  1086. overflow: hidden;
  1087. }
  1088. .notebook-edit-title-text {
  1089. background-color: #e0ecff;
  1090. border-color: #ffe99b;
  1091. }
  1092. .notebook-msg-error {
  1093. color: #FF0000;
  1094. display :none;
  1095. background-color: #ffe99b;
  1096. width: 40%;
  1097. }
  1098. .notebook-list {
  1099. margin: 1em 1em 0em 1em;
  1100. background-color: #79b;
  1101. padding: 0.3em 0.3em;
  1102. -moz-border-radius: 0.5em;
  1103. }
  1104. .notebook-title-list {
  1105. color : #fff;
  1106. padding: 0.3em 0.3em;
  1107. font-weight: bold;
  1108. font-size: 120%;
  1109. }
  1110. .notebook-desc-list {
  1111. margin: 0em;
  1112. background-color: #f2f5f8;
  1113. padding: 0.5em 0.3em 2em 0.3em;
  1114. border: 1px solid #79b;
  1115. }
  1116. .notebook-term-action-links {
  1117. padding: 0.3em 0.3em;
  1118. width: 50%;
  1119. color : #fff;
  1120. }
  1121. .notebook-orderby-link {
  1122. text-align:right;
  1123. margin-right: 1em;
  1124. }
  1125. .notebook-search-title {
  1126. text-align:right;
  1127. margin: 1em;
  1128. }
  1129. .notebook-date-information {
  1130. color : #fff;
  1131. padding: 0.3em;
  1132. font-size: 120%;
  1133. font-weight: bold;
  1134. }
  1135. /* Gradebook */
  1136. .resource-deleted {
  1137. color:#990000;
  1138. }
  1139. .gradebook-table-header {
  1140. border: 1px solid rgb(153, 153, 153);
  1141. background: rgb(240, 240, 240) none repeat scroll 0% 0%;
  1142. }
  1143. .gradebook-table-body {
  1144. border: 1px solid rgb(153, 153, 153);
  1145. background: rgb(255, 255, 255) none repeat scroll 0% 0%;
  1146. }
  1147. .label_result {
  1148. float: left;
  1149. width: 25%;
  1150. text-align: left;
  1151. padding-top:8px;
  1152. }
  1153. .formw_result {
  1154. width: 75%;
  1155. float:left;
  1156. }
  1157. /* big actions */
  1158. .actionsbig {
  1159. background:#F8F8F8;
  1160. border-bottom:1px solid #999999;
  1161. border-top:1px solid #999999;
  1162. background-color:#E5EDF9;
  1163. height:100%;
  1164. padding:2px;
  1165. margin-bottom: 5px;
  1166. vertical-align:middle;
  1167. float:left;
  1168. width:100%;
  1169. }
  1170. .content_table {
  1171. padding:2px;
  1172. margin-bottom: 5px;
  1173. vertical-align:middle;
  1174. float:left;
  1175. width:100%;
  1176. }
  1177. .actionsbig a {
  1178. float:left;
  1179. padding-left:6px;
  1180. padding-right:12px;
  1181. text-align:center;
  1182. }
  1183. .actions-title {
  1184. background:#E5EDF9;
  1185. border-bottom:1px dotted #999999;
  1186. border-top:1px dotted #999999;
  1187. padding:4px;
  1188. margin-bottom: 5px;
  1189. font-size:14px;
  1190. font-weight:bolder;
  1191. vertical-align:middle;
  1192. }
  1193. .actions-message {
  1194. white-space: nowrap;
  1195. padding: 2px;
  1196. background-color: #D2ECF5;
  1197. border: 1px solid #ABDAEA;
  1198. }
  1199. /**********************************************
  1200. * EXERCISE TOOL *
  1201. **********************************************/
  1202. .exercice_form {
  1203. width: 300px;
  1204. }
  1205. span.checkbox {
  1206. width: 19px;
  1207. height: 25px;
  1208. padding: 0 5px 0 0;
  1209. display: block;
  1210. clear: left;
  1211. float: left;
  1212. }
  1213. span.radio {
  1214. width: 19px;
  1215. height: 25px;
  1216. padding: 0 5px 0 0;
  1217. display: block;
  1218. clear: left;
  1219. float: left;
  1220. }
  1221. .icon_image_content {
  1222. width:70px;
  1223. cursor:hand;
  1224. height:6em;
  1225. text-align: center;
  1226. padding-right: 10px;
  1227. padding-left: 0px;
  1228. border: 1px dotted #ccc;
  1229. background-color: #eee;
  1230. margin-right: 0.2em;
  1231. margin-top: 0.1em;
  1232. -moz-border-radius-topleft : 5px;
  1233. -moz-border-radius-bottomright : 5px;
  1234. -moz-border-radius-bottomleft : 5px;
  1235. -moz-border-radius-topright : 5px;
  1236. }
  1237. .icon_image_content:hover {
  1238. background-color: #fff;
  1239. border: 1px solid #ccc;
  1240. }
  1241. #expire_session div {
  1242. float:left;
  1243. padding-left:15px;
  1244. }
  1245. .question_menu {
  1246. list-style:none;
  1247. float:left;
  1248. }
  1249. .question_menu li {
  1250. float:left;
  1251. margin:0px;
  1252. }
  1253. #exercise_admin {
  1254. margin: 0;
  1255. padding: 0;
  1256. border: 0;
  1257. }
  1258. div#friend-header {
  1259. float:left;
  1260. width:100%;
  1261. line-height: 2.1em;
  1262. }
  1263. div#friend-header a {
  1264. padding-right:6px;
  1265. }
  1266. div.image_friend_network {
  1267. float:left;
  1268. /* border:1px solid #CCCCCC; */
  1269. margin:2px;
  1270. padding:4px;
  1271. height:125px;
  1272. width:82px;
  1273. z-index:5;
  1274. }
  1275. div.image_friend_network span {
  1276. overflow:hidden;
  1277. display:block;
  1278. height:92px;
  1279. margin: 0px 0px;
  1280. }
  1281. div.image_friend_network img {
  1282. vertical-align:middle;
  1283. }
  1284. div.image_friend_network center.friend {
  1285. overflow:hidden;
  1286. height:30px;
  1287. }
  1288. .friend_invitations {
  1289. margin: 0 0 4px 12px;
  1290. }
  1291. .u-m-answer {
  1292. float:left;
  1293. width:100%;
  1294. }
  1295. .u-m-answer p {
  1296. margin:4px;
  1297. }
  1298. .refresh {
  1299. background-repeat:no-repeat;
  1300. padding-left:20px;
  1301. padding-bottom:2px;
  1302. }
  1303. .portal {
  1304. background-repeat:no-repeat;
  1305. padding-left:28px;
  1306. padding-bottom:10px;
  1307. padding-top:8px;
  1308. }
  1309. .legal-terms {
  1310. height:150px;
  1311. overflow:auto;
  1312. background-color:#eee;
  1313. width:500px;
  1314. }
  1315. a.read {
  1316. font-weight:normal;
  1317. }
  1318. .actions-title {
  1319. background:#efefef;
  1320. border:1px solid #ccc;
  1321. padding:4px;
  1322. margin-bottom: 5px;
  1323. font-size:14px;
  1324. font-weight:bolder;
  1325. vertical-align:middle;
  1326. }
  1327. /* INVITATIONS */
  1328. .invitation_confirm {
  1329. padding-bottom: 10px;
  1330. border-bottom: 1px solid #D8DFEA;
  1331. }
  1332. .invitation_image {
  1333. width:110px;
  1334. }
  1335. /* DASHBOARD */
  1336. /* Head section */
  1337. #head {
  1338. background-color: #000;
  1339. height: 100px;
  1340. }
  1341. #head h1 {
  1342. line-height: 100px;
  1343. color: #FFF;
  1344. text-align: center;
  1345. text-indent: -9999em
  1346. }
  1347. /* End Head Section */
  1348. /* Columns section */
  1349. #columns .column {
  1350. float: left;
  1351. width: 50%;
  1352. /* Min-height: */
  1353. min-height: 400px;
  1354. height: auto !important;
  1355. height: 400px;
  1356. }
  1357. #columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
  1358. /* To add in 1.8.7*/
  1359. .session_box_title span {
  1360. font-size: 130%;
  1361. font-weight: bold;
  1362. }
  1363. .sub_session_box_title span {
  1364. font-size: 130%;
  1365. font-weight: bold;
  1366. }
  1367. #session_category_title {
  1368. font-size: 140%;
  1369. font-weight: bold;
  1370. padding: 2px 0px 5px 5px;
  1371. }
  1372. .courseadminview-activity-3col, .platformadminview-activity-3col {
  1373. -moz-border-radius:5px 5px 5px 5px;
  1374. border:1px solid #E1E1E0;
  1375. float:left;
  1376. margin:0px 20px 10px 2px;
  1377. padding:11px;
  1378. width:220px;
  1379. height:330px;
  1380. }
  1381. .courseadminview-activity-3col ul {
  1382. padding:0px 20px 10px 4px;
  1383. list-style-type:none;
  1384. height:240px;
  1385. margin-left:0px;
  1386. margin: 0px 0px 0px 0px ;
  1387. }
  1388. .courseadminview-activity-3col ul li {
  1389. padding:4px 0px 4px 0px;
  1390. }
  1391. #activity-3col {
  1392. width: 800px ;
  1393. margin-left: auto ;
  1394. margin-right: auto ;
  1395. }
  1396. .userportal-catalog-item {
  1397. -webkit-border-radius: 10px;
  1398. -moz-border-radius: 10px;
  1399. border-radius: 10px;
  1400. border: 1px solid #DCE5F3;
  1401. /*background-color:#F9F9F9; */
  1402. padding:0px 0px 0px 5px;
  1403. margin:5px;
  1404. /* height:40px; */
  1405. }
  1406. .userportal-catalog-item .catalog_box li span {
  1407. font-size:130%;
  1408. font-weight:bold;
  1409. margin-left:5px;
  1410. }
  1411. .catalog_box {
  1412. /* font-weight: bold; */
  1413. color: #666;
  1414. list-style-type: none;
  1415. margin:5px 5px 10px 5px;
  1416. padding: 5px;
  1417. background-color:#FFF;
  1418. }
  1419. .course-student-view-activity-3col {
  1420. -webkit-border-radius: 10px;
  1421. -moz-border-radius: 10px;
  1422. border-radius: 10px;
  1423. background-color:#FFFFFF;
  1424. height: 350px;
  1425. width: 800px ;
  1426. margin-left: auto ;
  1427. margin-right: auto ;
  1428. }
  1429. .course-student-view-activity-3col ul {
  1430. padding:10px 20px 10px 20px;
  1431. list-style-type:none;
  1432. /* height:240px; */
  1433. margin-left:0px;
  1434. margin: 0px 0px 0px 0px ;
  1435. float:left;
  1436. width : 280px;
  1437. }
  1438. .course-student-view-activity-3col ul li {
  1439. padding:5px 0px 4px 0px;
  1440. }
  1441. /* plugins divs */
  1442. #plugin-header {
  1443. margin-left:65px;
  1444. padding:5px;
  1445. }
  1446. #plugin-mycourses_menu {
  1447. padding:5px;
  1448. }
  1449. #plugin-mycourses_main {
  1450. padding:5px;
  1451. }
  1452. #plugin-footer {
  1453. padding:0px;
  1454. }
  1455. #id_contact_form .normal-message{
  1456. padding:20px;
  1457. }
  1458. /* Scroll effect */
  1459. .subnav-fixed .nav {
  1460. /* width: 938px; */
  1461. margin: 0 auto;
  1462. padding: 0 1px;
  1463. }
  1464. /* Text resize icons in header */
  1465. .resize_font { /* the canvas */
  1466. margin: 0 5px 0 5px;
  1467. }
  1468. .reset_font {
  1469. font-size: 1.2em;
  1470. color: gray;
  1471. border: 1px solid white;
  1472. padding: 2px;
  1473. }
  1474. .reset_font:hover {
  1475. border: 1px solid black;
  1476. cursor: pointer;
  1477. }
  1478. .increase_font {
  1479. font-size: 1.8em;
  1480. color: gray;
  1481. border: 1px solid white;
  1482. padding: 2px;
  1483. }
  1484. .increase_font:hover {
  1485. border: 1px solid black;
  1486. cursor: pointer;
  1487. }
  1488. .decrease_font {
  1489. font-size: 0.6em;
  1490. color: gray;
  1491. border: 1px solid white;
  1492. padding: 2px;
  1493. }
  1494. .decrease_font:hover {
  1495. border: 1px solid black;
  1496. cursor: pointer;
  1497. }
  1498. /* tips Abbr-plugin for FCKeditor */
  1499. abbr {
  1500. border-bottom: 1px dotted rgb(102, 102, 102);
  1501. background-color:#F00;
  1502. cursor: help;
  1503. }
  1504. #toolshortcuts_horizontal {
  1505. width:92%;
  1506. padding: 0px 0px 2px 0;
  1507. }