default.css 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628
  1. /* Styles that should disappear */
  2. .row {
  3. width:100%;
  4. }
  5. div.row div.label {
  6. width: 0%;
  7. }
  8. div.row div.formw {
  9. width: 100%;
  10. }
  11. /* Redefining html styles */
  12. body {
  13. /* hack ignored by non-IE to enable ie to support :hover on button */
  14. behavior:url("/main/css/csshover3.htc");
  15. font-family: bold arial, verdana, helvetica, sans-serif;
  16. font-size: 12px;
  17. margin: 0;
  18. padding: 0;
  19. }
  20. img {
  21. border: none;
  22. }
  23. a {
  24. font-family:Arial, Helvetica, sans-serif;
  25. font-weight: bold;
  26. text-decoration: none;
  27. }
  28. a:link {
  29. color : #4171b5;
  30. }
  31. a:visited {
  32. color : #4171b5;
  33. }
  34. a:hover {
  35. color: #000915;
  36. }
  37. a:active {
  38. }
  39. input, input[type=file], select, textarea {
  40. border:1px solid #4171b5;
  41. padding:1px 2px;
  42. }
  43. input[type=button], input[type=submit] {
  44. border:1px solid #4171b5;
  45. background:#F0F0F0;
  46. padding-left:10px;
  47. padding-right:10px;
  48. font-weight:bold;
  49. color:#4171b5;
  50. }
  51. /* header 1 styles */
  52. #header {
  53. background-color: #4171b5;
  54. color: #b0c8eb;
  55. font-weight: bold;
  56. }
  57. #header1 {
  58. padding-left: 30px;
  59. }
  60. #header1 a {
  61. color: #d6e3f5;
  62. text-decoration: none;
  63. }
  64. #header1 a:hover {
  65. }
  66. #my_courses {
  67. float: right;
  68. font-weight: bold;
  69. }
  70. #header1 img {
  71. border: 0px;
  72. }
  73. /* header 2 styles */
  74. #header2 {
  75. float: right;
  76. clear: right;
  77. }
  78. #header2 a {
  79. color: #d6e3f5;
  80. text-decoration: none;
  81. }
  82. #header2 a:hover {
  83. }
  84. #Header2Right ul {
  85. float: right;
  86. list-style-type: none;
  87. text-align: right;
  88. margin: 0;
  89. padding: 0;
  90. }
  91. #Header2Right ul li {
  92. display: inline;
  93. }
  94. #Header2Right ul li a {
  95. }
  96. #Header2Right ul li a:hover {
  97. }
  98. /* header 3 styles */
  99. #header3 {
  100. border-bottom: 1px solid #aeaeae;
  101. height:auto;
  102. font-weight: bold;
  103. margin: 0;
  104. padding: 0;
  105. }
  106. #header3 ul {
  107. list-style:none;
  108. }
  109. #header3 li {
  110. display:inline;
  111. cursor: pointer;
  112. }
  113. #header3 a {
  114. color: #d6e3f5;
  115. float:left;
  116. text-decoration:none;
  117. cursor: pointer;
  118. padding-right: 1px;
  119. height:25px;
  120. }
  121. #header3 li a:hover {
  122. float:left;
  123. text-decoration:none;
  124. cursor: pointer;
  125. }
  126. #header3 li a span {
  127. float:left;
  128. cursor: pointer;
  129. padding-right: 10px;
  130. padding-top: 5px;
  131. height:20px;
  132. }
  133. #header3 li a:hover span {
  134. float:left;
  135. cursor: pointer;
  136. }
  137. #header3 #current a {
  138. color: #fff;
  139. float:left;
  140. text-decoration:none;
  141. }
  142. #header3 #current a span {
  143. float:left;
  144. }
  145. #logout li a {
  146. display: inline;
  147. float: right;
  148. vertical-align:top;
  149. margin-right:5px;
  150. text-decoration:none;
  151. }
  152. #logout li a:hover {
  153. float: right;
  154. vertical-align:top;
  155. text-decoration:none;
  156. margin-right:5px;
  157. }
  158. #logout li a span {
  159. float:left;
  160. cursor: pointer;
  161. }
  162. #logout li a:hover span{
  163. }
  164. /* header 4 styles */
  165. #header4 {
  166. background-color: #fff;
  167. height: 21px;
  168. }
  169. a.breadcrumb {
  170. height: 21px;
  171. color: #4171b5;
  172. }
  173. a.breadcrumb0 {
  174. background:url(images/home.gif) no-repeat;
  175. padding-left: 22px;
  176. }
  177. /* footer styles */
  178. #footer {
  179. background: #4171b5 url('images/bg.jpg') no-repeat 50% 100%;
  180. color: #b0c8eb;
  181. padding: 82px 0 .8em 2%;
  182. border-bottom: 1px solid #4171b5;
  183. }
  184. #footerright {
  185. margin-top: 10px;
  186. float: right;
  187. margin-right:20px;
  188. }
  189. #footerleft {
  190. padding-top: 10px;
  191. }
  192. #footer a {
  193. color: #FFFFFF;
  194. }
  195. /* main styles */
  196. #main {
  197. padding-left: 30px;
  198. position: relative;
  199. min-height: 320px;
  200. padding-left: 15px;
  201. padding-right: 15px;
  202. padding-bottom: 5px;
  203. }
  204. /* my courses styles */
  205. #maincontent {
  206. float: left;
  207. width: 80%;
  208. min-height: 333px;
  209. margin-top:0;
  210. float: right;
  211. clear: right;
  212. }
  213. .coursestatusicons {
  214. border: 0px solid #000;
  215. float: left;
  216. padding-right: 5px;
  217. width: auto;
  218. }
  219. .courseslist {
  220. margin-left: -25px;
  221. }
  222. .courses {
  223. list-style-type: none;
  224. margin-bottom: 5px;
  225. }
  226. .courses a {
  227. text-decoration:underline;
  228. }
  229. .user_course_category {
  230. background-color: #efefef;
  231. border: 1px solid #666;
  232. font-weight: bold;
  233. color: #666;
  234. list-style-type: none;
  235. margin: 5px;
  236. padding: 5px;
  237. }
  238. .menu {
  239. background: url('images/bglogin.jpg') repeat-y top center;
  240. float: left;
  241. clear: left;
  242. width: 215px;
  243. border: 1px solid #b0c8eb;
  244. margin: 0 0 1em 0;
  245. padding: 0 0 .3em 0;
  246. /* min-height hack for ie6 or older*/
  247. min-height: 320px;
  248. height: auto !important;
  249. height: 320px;
  250. }
  251. .menu #lang_form select {
  252. margin: 1em 31px;
  253. }
  254. .menu form {
  255. color: #000915;
  256. font-weight: bold;
  257. margin-bottom: .8em;
  258. text-align: center;
  259. }
  260. .menucaption {
  261. font-size: 12px;
  262. font-weight: bold;
  263. padding-left: 12px;
  264. }
  265. .menusection {
  266. width: 100%;
  267. margin: .3em 0 .3em 0;
  268. padding-left: 3px;
  269. }
  270. .menusectioncaption {
  271. font-weight:bold;
  272. position: relative;
  273. }
  274. .menulist {
  275. list-style: none;
  276. padding: 0;
  277. }
  278. .note {
  279. width: auto;
  280. margin: 24px 6px 0 6px;
  281. padding: 3px;
  282. border: 2px outset;
  283. border-color:#4171b5;
  284. }
  285. /* form styles */
  286. .form {
  287. width: 75%;
  288. float: 'left';
  289. }
  290. form div.row {
  291. clear: both;
  292. padding-top: 5px;
  293. }
  294. .form_header {
  295. white-space: nowrap;
  296. padding: 2px;
  297. background-color: #f0f0f0;
  298. border: 1px solid #bbb;
  299. font-weight: bold;
  300. }
  301. form div.row div.label {
  302. float: left;
  303. width: 18%;
  304. text-align: right;
  305. }
  306. form div.row div.formw {
  307. width: 80%;
  308. }
  309. [dir=ltr] form div.row div.label, [dir=rtl] form div.row div.formw {
  310. float: left;
  311. text-align: right;
  312. }
  313. [dir=rtl] form div.row div.label, [dir=ltr] form div.row div.formw {
  314. float: right;
  315. text-align: left;
  316. }
  317. form span.form_required {
  318. color: #f00;
  319. }
  320. form span.form_error {
  321. color: #f00;
  322. font-size: x-small;
  323. margin: 2px;
  324. }
  325. /* feedback messages */
  326. .confirmation-message,.error-message,.normal-message,.warning-message {
  327. border: 2px solid #4171b5;
  328. margin: 1em auto;
  329. padding: 40px .5em .5em .3em;
  330. position: relative;
  331. width: 500px;
  332. color: #111;
  333. background: transparent url('images/alert.jpg') no-repeat 54px 0px;
  334. font: bold 110% Arial, sans-serif, sans;
  335. text-align: left;
  336. }
  337. .confirmation-message img,.error-message img,.normal-message img,.warning-message img
  338. {
  339. position: absolute;
  340. top: 0;
  341. left: 238px;
  342. }
  343. .confirmation-message .bottom-link, .error-message .bottom-link, .normal-message .bottom-link, .warning-message .bottom-link
  344. {
  345. position: absolute;
  346. bottom: 0.2em;
  347. right: 0.5em;
  348. }
  349. /* other styles */
  350. .clear {
  351. clear: both;
  352. line-height: 0px;
  353. height: 0;
  354. }
  355. /* actions */
  356. .actions_lp {
  357. background:#F8F8F8;
  358. border-bottom:1px solid #4171b5;
  359. border-top:1px solid #4171b5;
  360. height:29px;
  361. padding-left: -17px;
  362. margin-bottom: 1px;
  363. vertical-align:middle;
  364. width: 90%;
  365. margin-left:17px;
  366. }
  367. .actions_lp img {
  368. vertical-align:middle;
  369. }
  370. .actions_lp a {
  371. margin-right: 10px;
  372. vertical-align:middle;
  373. }
  374. .actions_lp span {
  375. margin-right: 10px;
  376. vertical-align:middle;
  377. }
  378. .actions_lp form {
  379. margin-right: 10px;
  380. vertical-align:middle;
  381. }
  382. .actions {
  383. background:#efefef;
  384. border-bottom:1px solid #4171b5;
  385. border-top:1px solid #4171b5;
  386. /*height:35px;*/
  387. padding:2px;
  388. margin-bottom: 5px;
  389. /*background:url(images/actions.jpg) repeat-x;*/
  390. vertical-align:middle;
  391. }
  392. .actions img {
  393. /*display:inline-block;*/
  394. border: none;
  395. text-decoration: none;
  396. background-color: #efefef;
  397. padding-right: 5px;
  398. vertical-align:middle;
  399. }
  400. .actions a {
  401. display:inline-block;
  402. margin-right: 10px;
  403. vertical-align:middle;
  404. }
  405. .actions span {
  406. margin-right: 10px;
  407. vertical-align:middle;
  408. }
  409. .actions form {
  410. margin-right: 10px;
  411. vertical-align:middle;
  412. }
  413. /* big actions */
  414. .actionsbig {
  415. background:#F8F8F8;
  416. border-bottom:1px solid #4171b5;
  417. border-top:1px solid #4171b5;
  418. background-color:#efefef;
  419. height:100%;
  420. padding:2px;
  421. margin-bottom: 5px;
  422. vertical-align:middle;
  423. }
  424. .actions img {
  425. vertical-align:middle;
  426. }
  427. .actions a {
  428. margin-right: 10px;
  429. vertical-align:middle;
  430. }
  431. /* styles for the profile page */
  432. .profile_image {
  433. float: right;
  434. margin-right: 20px;
  435. }
  436. .profile_form {
  437. float: left;
  438. width: 75%;
  439. }
  440. /* course introduction */
  441. #courseintrocenter {
  442. position: relative;
  443. width: 80%;
  444. margin: 25px auto 10px;
  445. }
  446. #courseintro_iconscenter {
  447. position: relative;
  448. width: 80%;
  449. margin: 0px auto 10px;
  450. }
  451. #courseintroleft {
  452. position: relative;
  453. width: 80%;
  454. margin-bottom: 5px;
  455. }
  456. #courseintro_iconsleft {
  457. position: relative;
  458. width: 80%;
  459. }
  460. /* styles for the agenda */
  461. #agenda {
  462. width: 100%;
  463. margin: 0 auto;
  464. border: 1px solid #CCCCCC;
  465. border-collapse: collapse;
  466. }
  467. /* The cells with the name of the days of the weeks (mon->sun)*/
  468. .weekdays {
  469. background-color: #dcdcdc;
  470. text-align: center;
  471. font-weight: bold;
  472. border: 1px solid #CCCCCC;
  473. border-collapse: collapse;
  474. }
  475. /* The cells for the days (1->31) */
  476. .days_week {
  477. height: 40px;
  478. width: 12%;
  479. border: 1px solid #CCCCCC;
  480. border-collapse: collapse;
  481. background-color: #f9f9f9;
  482. }
  483. .days_weekend {
  484. height: 40px;
  485. width: 12%;
  486. border: 1px solid #CCCCCC;
  487. border-collapse: collapse;
  488. background-color: #eaeaea;
  489. }
  490. .days_today {
  491. height: 40px;
  492. width: 12%;
  493. border: 1px solid #CCCCCC;
  494. border-collapse: collapse;
  495. background-color: #FFCA8D;
  496. color: #CC3300;
  497. font-weight: bold;
  498. }
  499. .agenda_month_divider {
  500. background-color: #666;
  501. color: #fff;
  502. text-align: center;
  503. }
  504. /*The caption of the calendar (displays the month and the << and >> links*/
  505. #agenda_list .title {
  506. background-color: #680157;
  507. color: #fff;
  508. text-align: left;
  509. padding: 2px 10px;
  510. text-align: center;
  511. border: 1px solid #bbb;
  512. }
  513. #agenda_list .title a:link, #agenda_list #title a:visited {
  514. color: #fff;
  515. padding: 2px 10px;
  516. text-align: center;
  517. }
  518. #agenda_list .title a:hover {
  519. color: #B70297;
  520. padding: 2px 10px;
  521. text-align: center;
  522. }
  523. /* text in the cells: display of agenda items (visible)*/
  524. #agenda_list .data {
  525. background-color: #eee;
  526. text-align: left;
  527. padding: 2px 10px;
  528. font-weight: bold;
  529. border: 0px solid #dcdcdc;
  530. border-collapse: collapse;
  531. }
  532. #agenda_list .datanotbold {
  533. background-color: #eee;
  534. text-align: left;
  535. padding: 2px 10px;
  536. font-weight: normal;
  537. border: 0px solid #dcdcdc;
  538. border-collapse: collapse;
  539. }
  540. #agenda_list .text {
  541. background-color: #fff;
  542. text-align: left;
  543. padding: 2px 10px;
  544. font-weight: normal;
  545. border: 0px solid #dcdcdc;
  546. border-collapse: collapse;
  547. }
  548. /*text in the cells: display of agenda items (invisible)*/
  549. #agenda_list .data_hidden {
  550. background-color: #eee;
  551. text-align: left;
  552. padding: 2px 10px;
  553. font-weight: bold;
  554. border: 0px solid #dcdcdc;
  555. border-collapse: collapse;
  556. color: #999999;
  557. }
  558. #agenda_list .datanotbold_hidden {
  559. background-color: #eee;
  560. text-align: left;
  561. padding: 2px 10px;
  562. font-weight: normal;
  563. border: 0px solid #dcdcdc;
  564. border-collapse: collapse;
  565. color: #999999;
  566. }
  567. #agenda_list .text_hidden {
  568. background-color: #fff;
  569. text-align: left;
  570. padding: 2px 10px;
  571. font-weight: normal;
  572. border: 0px solid #dcdcdc;
  573. border-collapse: collapse;
  574. color: #999999;
  575. }
  576. /*text in the cells: display of agenda items (highlighted)*/
  577. #agenda_list .datanow {
  578. background-color: #FFCC00;
  579. text-align: left;
  580. padding: 2px 10px;
  581. font-weight: bold;
  582. border: 0px solid #dcdcdc;
  583. border-collapse: collapse;
  584. }
  585. #agenda_list .datanotboldnow {
  586. background-color: #FFCC00;
  587. text-align: left;
  588. padding: 2px 10px;
  589. font-weight: normal;
  590. border: 0px solid #dcdcdc;
  591. border-collapse: collapse;
  592. }
  593. #agenda_list .textnow {
  594. background-color: #fff;
  595. text-align: left;
  596. padding: 2px 10px;
  597. font-weight: normal;
  598. border: 0px solid #dcdcdc;
  599. border-collapse: collapse;
  600. }
  601. .personal_agenda {
  602. color: #008000;
  603. }
  604. .personal_agenda a:link, .personal_agenda a:visited {
  605. color: #008000;
  606. }
  607. a.personal_agenda:link, a.personal_agenda:visited {
  608. color: #008000;
  609. }
  610. .personal_agenda a:hover, .personal_agenda a:hover {
  611. color: #B70297;
  612. }
  613. a.personal_agenda:hover, a.personal_agenda:hover {
  614. color: #B70297;
  615. }
  616. /* Login form */
  617. #formLogin div {
  618. margin-bottom: 3px;
  619. }
  620. #formLogin div input[type=submit] {
  621. width: 109px;
  622. }
  623. /* normal table*/
  624. .normal_table {
  625. margin: 3px;
  626. border-collapse: collapse;
  627. width: 98%;
  628. padding: 5px;
  629. }
  630. /* Data table */
  631. .data_table {
  632. margin: 3px;
  633. border-collapse: collapse;
  634. width: 100%;
  635. padding: 5px;
  636. }
  637. .data_table th {
  638. text-transform: capitalize;
  639. padding: .2em;
  640. background: #8cafe1 url('images/crystal3.png') repeat-x;
  641. color: #fff;
  642. border-right: 1px solid #fff;
  643. }
  644. .data_table th a {
  645. color: #fff;
  646. text-decoration:none;
  647. }
  648. .data_table th a:hover{
  649. color: #d6e3f5;
  650. }
  651. .data_table tr.row_odd {
  652. border-right: 1px solid #fff;
  653. background: #dfecff;
  654. padding: .2em;
  655. color: #00122B;
  656. margin: 0;
  657. }
  658. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  659. background-color: #8cafe1;
  660. }
  661. .data_table tr.row_even {
  662. border-right: 1px solid #fff;
  663. background: #d6e3f5;
  664. padding: .2em;
  665. color: #00122B;
  666. margin: 0;
  667. }
  668. .data_table td {
  669. padding: 5px;
  670. vertical-align: top;
  671. border-bottom: 2px solid #fff;
  672. border-right: 2px solid #fff;
  673. border-left: 2px solid #fff;
  674. }
  675. /* sections in the page */
  676. .sectiontitle {
  677. background-color: #EFEFEF;
  678. border: 1px solid #4171b5;
  679. font-weight: bold;
  680. color: #4171b5;
  681. list-style-type: none;
  682. margin: 5px;
  683. padding: 5px;
  684. }
  685. .sectioncomment {
  686. color: #000000;
  687. margin: 5px;
  688. padding: 5px;
  689. }
  690. .sectionvalue {
  691. list-style-type: none;
  692. margin: 5px;
  693. padding: 5px;
  694. }
  695. /* invisible styles */
  696. a.invisible {
  697. color: #999999;
  698. }
  699. a.invisible:visited {
  700. color: #999999;
  701. }
  702. a.invisible:active {
  703. color: #999999;
  704. }
  705. a.invisible:hover {
  706. color: #999999;
  707. }
  708. /* Platform Administration */
  709. div.admin_section {
  710. width: 40%;
  711. float: left;
  712. padding: 5px;
  713. margin: 10px 20px;
  714. }
  715. div.admin_section h4 {
  716. background-color: #EFEFEF;
  717. border: 1px solid #4171b5;
  718. font-weight: bold;
  719. color: #4171b5;
  720. list-style-type: none;
  721. margin: 5px;
  722. padding: 5px;
  723. }
  724. /* course homepage */
  725. .courseadminview, .platformadminview {
  726. position: relative;
  727. width: 80%;
  728. margin: 25px auto 10px;
  729. padding: 10px;
  730. border: 1px solid #0049AF;
  731. }
  732. .courseadminview img, .platformadminview img {
  733. display:inline-block;
  734. border: none;
  735. text-decoration: none;
  736. background-color: #fff;
  737. padding-right: 5px;
  738. vertical-align:middle;
  739. }
  740. .viewcaption {
  741. position: relative;
  742. top: -20px;
  743. font-weight: bold;
  744. background-color: #fff;
  745. padding: 0 4px;
  746. }
  747. /* learning path */
  748. table.lp_build {
  749. height:400px;
  750. width:100%;
  751. }
  752. table.lp_build td {
  753. vertical-align:top;
  754. }
  755. table.lp_build td.tree {
  756. border-right:1px solid #999999;
  757. width:240px;
  758. }
  759. table.lp_build td.workspace {
  760. padding: 0px;
  761. padding-left:5px;
  762. width:auto;
  763. }
  764. table.lp_overview {
  765. width:100%;
  766. }
  767. table.lp_overview td {
  768. border-bottom:1px solid #999999;
  769. border-top:1px solid #999999;
  770. height:20px;
  771. padding:3px;
  772. vertical-align:middle;
  773. width:auto;
  774. }
  775. table.lp_overview td.title {
  776. width:200px;
  777. }
  778. table.lp_overview td.actions {
  779. text-align:center;
  780. width:100px;
  781. }
  782. table.lp_overview td.move {
  783. text-align:center;
  784. width:50px;
  785. }
  786. table.lp_overview th {
  787. background:#FFFFFF;
  788. padding-left:3px;
  789. text-align:center;
  790. }
  791. table.lp_overview tr {
  792. background:#F8F8F8;
  793. }
  794. table.lp_overview tr:hover {
  795. background:#E5EDF9;
  796. }
  797. table.lp_overview img {
  798. margin-left:3px;
  799. }
  800. table.lp_prerequisites th {
  801. background:#F8F8F8;
  802. border-bottom:1px solid #999999;
  803. border-top:1px solid #999999;
  804. }
  805. .lp_mediaplayer {
  806. float: right;
  807. padding-top: 3px;
  808. margin-right: 5px;
  809. }
  810. div.lp_manipulate {
  811. background:#F8F8F8;
  812. border-bottom:1px dotted #999999;
  813. margin-bottom:0px;
  814. padding:3px 0 3px 10px;
  815. }
  816. div.lp_manipulate a {
  817. padding-right:10px;
  818. }
  819. div.lp_resource_header {
  820. background:#F0F0F0;
  821. border:1px solid #999999;
  822. font-weight:bold;
  823. padding:10px;
  824. width:350px;
  825. cursor:pointer;
  826. margin-top: -1px;
  827. }
  828. div.lp_resource_elements {
  829. background:#FAFAFA;
  830. border:1px solid #999999;
  831. display:none;
  832. padding:5px 10px;
  833. width:350px;
  834. margin-top: -1px;
  835. }
  836. .learnpath_chapter_form {
  837. width: 300px;
  838. }
  839. .learnpath_item_form {
  840. width: 300px;
  841. }
  842. #learnpath_preview_frame {
  843. margin-top: 5px;
  844. border:1px solid #CCCCCC;
  845. height:490px;
  846. width:95%;
  847. }
  848. /* exercices styles */
  849. .exercice_form {
  850. width: 300px;
  851. }
  852. #validationButton {
  853. text-decoration: none;
  854. margin: 5px;
  855. border:1px solid #999999;
  856. background:#F0F0F0;
  857. padding: 3px;
  858. padding-left:10px;
  859. padding-right:10px;
  860. font-weight:bold;
  861. color:#666;
  862. }
  863. .exercise_scenario_label {
  864. }
  865. .exercise_scenario_element {
  866. }
  867. span.checkbox {
  868. width: 19px;
  869. height: 25px;
  870. padding: 0 5px 0 0;
  871. background: url(images/checkbox.gif) no-repeat;
  872. display: block;
  873. clear: left;
  874. float: left;
  875. }
  876. span.radio {
  877. width: 19px;
  878. height: 25px;
  879. padding: 0 5px 0 0;
  880. background: url(images/radio.gif) no-repeat;
  881. display: block;
  882. clear: left;
  883. float: left;
  884. }
  885. /* forum styles */
  886. .forum_header {
  887. background: #f3f3f3;
  888. font-weight: bold;
  889. }
  890. .forum_message_left {
  891. width: 150px;
  892. vertical-align: top;
  893. /*border-bottom: 1px solid #666666;*/
  894. border-right: 1px solid #aaa;
  895. background-color: #F7F7F7;
  896. }
  897. .forum_message_post_title {
  898. border-bottom: 1px solid #aaa;
  899. font-weight: bold;
  900. background-color: #F7F7F7;
  901. height: 20px;
  902. }
  903. .forum-thread-header{
  904. color: #000000;
  905. background-color: #F7F7F7;
  906. border-left: 1px solid #aaa;
  907. border-right: 1px solid #aaa;
  908. border-bottom: 1px solid #aaa;
  909. border-top: 1px solid #aaa;
  910. }
  911. .forum-thread-body{
  912. color: #000000;
  913. background-color: #FFFFFF;
  914. border-left: 1px solid #aaa;
  915. border-right: 1px solid #aaa;
  916. border-bottom: 1px solid #aaa;
  917. border-top: 1px solid #aaa;
  918. }
  919. /* Survey styles */
  920. #survey_title {
  921. background-color:#dcdcdc;
  922. color:#000;
  923. padding:2px;
  924. }
  925. #survey_subtitle {
  926. background-color:#dcdcdc;
  927. color:#000;
  928. padding:2px;
  929. }
  930. .survey_content {
  931. background-color:#EFEFEF;
  932. color:#264269;
  933. padding:5px;
  934. border: 1px solid #999;
  935. }
  936. .survey_question_wrapper {
  937. border: 1px solid #999;
  938. }
  939. .survey_question {
  940. /* 264269 4271b5 E5EDF9 */
  941. background-color:#f0f0f0;
  942. color:#999;
  943. padding:5px;/*border: 1px solid #264269;*/
  944. }
  945. .survey_question_options {
  946. /* 264269 4271b5 E5EDF9 */
  947. background-color:#FFF;
  948. color:#000;
  949. padding:5px;/*border: 1px solid #264269;*/
  950. }
  951. /* Blog */
  952. .blog_menu {
  953. border-bottom: 1px dashed #dddddd;
  954. border-right: 1px dashed #dddddd;
  955. border-left: 1px dashed #dddddd;
  956. padding: 10px;
  957. }
  958. .blogpost {
  959. border: 1px solid #DDDDDD;
  960. background-color: #ECECEC;
  961. margin-bottom: 15px;
  962. padding: 10px;
  963. }
  964. .blogpost_title {
  965. display: block;
  966. font-weight: bold;
  967. padding-bottom: 5px;
  968. }
  969. .blogpost_date {
  970. display: block;
  971. font-weight: bold;
  972. color: #333333;
  973. padding-bottom: 10px;
  974. }
  975. .blogpost_info {
  976. display: block;
  977. color: #333333;
  978. border-top: 1px solid #dddddd;
  979. margin-top: 5px;
  980. }
  981. .blogpost_comment {
  982. border-top: 1px dashed #dddddd;
  983. border-right: 1px dashed #dddddd;
  984. border-bottom: 1px dashed #dddddd;
  985. border-left: 1px dashed #dddddd;
  986. margin-bottom: 10px;
  987. padding: 10px;
  988. background-color: white;
  989. }
  990. .blogpost_comment_title {
  991. display: block;
  992. font-weight: bold;
  993. color: #1657A9;
  994. padding-bottom: 5px;
  995. }
  996. .blogpost_comment_date {
  997. display: block;
  998. font-size: 10px;
  999. font-weight: bold;
  1000. color: #333333;
  1001. padding-bottom: 10px;
  1002. }
  1003. .blogpost_comment_info {
  1004. font-size: 10px;
  1005. display: block;
  1006. color: #333333;
  1007. border-top: 1px solid #dddddd;
  1008. margin-top: 10px;
  1009. }
  1010. .blogpost {
  1011. border: 1px solid #DDDDDD;
  1012. background-color: #ECECEC;
  1013. margin-bottom: 15px;
  1014. padding: 10px;
  1015. }
  1016. .comments {
  1017. border: 1px solid #dddddd;
  1018. margin-bottom: 10px;
  1019. margin-top: 10px;
  1020. padding: 10px;
  1021. background-color: #F4F4F4;
  1022. }
  1023. /* tabbed menu */
  1024. #tabbed_menu {
  1025. border: 1px solid #4171b5;
  1026. background: transparent url('images/dropbox.jpg') no-repeat top left;
  1027. width: 300px;
  1028. margin: 0 0 1em 0;
  1029. }
  1030. #tabbed_menu_tabs {
  1031. width: 90%;
  1032. margin: 15px .2em 0 .2em;
  1033. padding: 0;
  1034. list-style-type: none;
  1035. }
  1036. #tabbed_menu_tabs li {
  1037. padding: 0;
  1038. margin: 0 .8em;
  1039. }
  1040. /* system announcements */
  1041. div.system_announcement {
  1042. padding: .2em;
  1043. background-color: #d6e3f5;
  1044. border: 1px solid #002D6D;
  1045. color: #002D6D;
  1046. }
  1047. .system_announcement {
  1048. background: #8cafe1 url('images/crystal3.png') repeat-x;
  1049. font: bold 100% arial, sans-serif, sans;
  1050. color: #fff;
  1051. }
  1052. .system_announcement a {
  1053. color: #d6e3f5;
  1054. }
  1055. .system_announcement a:hover,.system_announcement a:focus {
  1056. color: #fff;
  1057. }
  1058. .system_announcement_content {
  1059. font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
  1060. }
  1061. .system_announcements {
  1062. background: transparent url('images/systemenouvelles.jpg') no-repeat top
  1063. left;
  1064. padding-top: 30px;
  1065. width: 50%;
  1066. }
  1067. .system_announcements h3 {
  1068. text-align: center;
  1069. }
  1070. .system_announcement_title {
  1071. color: #fff;
  1072. }
  1073. #image_preview {
  1074. text-align:center;
  1075. padding-left: 17px;
  1076. }
  1077. .skip {
  1078. display: none;
  1079. }
  1080. /* Specific forms: profile,add course,advanced search,advanced course search,etc.. */
  1081. #add_course,#profile,#advanced_course_search,#advanced_search,#category,#course_user_import,#export_users,#update_course,#user_add,#user_import
  1082. {
  1083. border: 1px solid #0049AF;
  1084. background: transparent url("images/headerform.jpg") no-repeat top left;
  1085. width: 550px;
  1086. position: relative;
  1087. padding: 60px 0 1em 0;
  1088. }
  1089. /* Glossary tool */
  1090. .glossary-term {
  1091. margin: 1em;
  1092. background-color: #ffe99b;
  1093. padding: 0.5em 0.5em 1.8em 0;
  1094. -moz-border-radius: 0.5em;
  1095. }
  1096. .glossary-term-title {
  1097. margin: 2em 0 1em 0.5em;
  1098. font-weight: bold;
  1099. font-size: 120%;
  1100. }
  1101. .glossary-term-desc {
  1102. margin-left: 1em;
  1103. }
  1104. .glossary-term-action-links {
  1105. float: right;
  1106. }
  1107. .glossary-term-edit-form {
  1108. margin: 1em;
  1109. background-color: #FFE4C4;
  1110. padding: 0.5em 0.5em 2em 0;
  1111. -moz-border-radius: 0.5em;
  1112. }
  1113. .glossary-term-edit-desc {
  1114. font-weight: bold;
  1115. font-size: 120%;
  1116. }
  1117. .glossary-term-edit-title {
  1118. font-weight: bold;
  1119. font-size: 120%;
  1120. }
  1121. .glossary-add-form {
  1122. font-weight: bold;
  1123. font-size: 120%;
  1124. margin: 1em;
  1125. }
  1126. .glossary-orderby-link {
  1127. float:right;
  1128. margin: 1em;
  1129. }
  1130. .glossary-msg-error {
  1131. color: #FF0000;
  1132. display :none;
  1133. font-weight: normal;
  1134. font-size: 80%;
  1135. }
  1136. /* Notebook */
  1137. .notebook-add-form {
  1138. margin: 1em;
  1139. background-color: #c3d9ff;
  1140. padding: 1em 1em;
  1141. }
  1142. .notebook-add-desc-textarea {
  1143. background-color: #f2f5f8;
  1144. border-color: #ffe99b;
  1145. overflow: hidden;
  1146. }
  1147. .notebook-add-title-text {
  1148. background-color: #f2f5f8;
  1149. border-color: #ffe99b;
  1150. }
  1151. .notebook-edit-desc-textarea {
  1152. background-color: #e0ecff;
  1153. border-color: #ffe99b;
  1154. overflow: hidden;
  1155. }
  1156. .notebook-edit-title-text {
  1157. background-color: #e0ecff;
  1158. border-color: #ffe99b;
  1159. }
  1160. .notebook-msg-error {
  1161. color: #FF0000;
  1162. display :none;
  1163. background-color: #ffe99b;
  1164. width: 40%;
  1165. }
  1166. .notebook-list{
  1167. margin: 1em 1em 0em 1em;
  1168. background-color: #79b;
  1169. padding: 0.3em 0.3em;
  1170. -moz-border-radius: 0.5em;
  1171. }
  1172. .notebook-title-list{
  1173. color : #fff;
  1174. padding: 0.3em 0.3em;
  1175. font-weight: bold;
  1176. font-size: 120%;
  1177. }
  1178. .notebook-desc-list {
  1179. margin: 0em;
  1180. background-color: #f2f5f8;
  1181. padding: 0.5em 0.3em 2em 0.3em;
  1182. border: 1px solid #79b;
  1183. }
  1184. .notebook-term-action-links {
  1185. padding: 0.3em 0.3em;
  1186. width: 50%;
  1187. color : #fff;
  1188. }
  1189. .notebook-orderby-link {
  1190. text-align:right;
  1191. margin-right: 1em;
  1192. }
  1193. .notebook-search-title {
  1194. text-align:right;
  1195. margin: 1em;
  1196. }
  1197. .notebook-date-information {
  1198. color : #fff;
  1199. padding: 0.3em;
  1200. font-size: 120%;
  1201. font-weight: bold;
  1202. }
  1203. /*NAVIGATION MENU BAR*/
  1204. .menucaption {
  1205. font-size: 12px;
  1206. font-weight: bold;
  1207. padding-left: 12px;
  1208. }
  1209. .menusection {
  1210. width: auto;
  1211. margin: 24px 6px 0 6px;
  1212. padding-left: 10px;
  1213. border: 1px solid #4171B5;
  1214. }
  1215. .menusectioncaption {
  1216. position: relative;
  1217. top: -9px;
  1218. background-color: #E5EDF9;
  1219. font-size: 12px;
  1220. padding: 0 8px 0 4px;
  1221. }
  1222. .menulist {
  1223. list-style: none;
  1224. margin: 0 0 12px 0;
  1225. padding: 0;
  1226. }
  1227. #centerwrap {
  1228. float: left;
  1229. width: 100%;
  1230. margin-right: -95%;
  1231. /* this needs to be less than 100% for Moz/Mac which thinks
  1232. it's empty otherwise. The difference is made up by putting a
  1233. negative left margin on the left float:
  1234. Note IE/Mac doesn't like this method ~ it wants the 100% so it can
  1235. be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
  1236. */
  1237. }
  1238. #center { margin: 0 190px 0 0; padding: 10px 0 40px 0;
  1239. min-height: 300px; }
  1240. #toolnav { float: right; width: 180px; padding: 0; margin: 0;
  1241. margin-left: -5%; /* the difference to make the left colum appear flush left */
  1242. }
  1243. /* Hide from IE5-mac. Only IE-win sees this. \*/
  1244. * html #toolnav { margin-right: 0px;}
  1245. * html #center { height: 1%; margin-left: 0; }
  1246. /* End hide from IE5/mac */
  1247. /* --- course navigation menu as a definition list --- */
  1248. #swap_menu_link {
  1249. float: left;
  1250. }
  1251. #toolnavbox {
  1252. margin: 0 0 0 10px;
  1253. padding: 0;
  1254. float: left;
  1255. border: 1px solid #4271b5;
  1256. }
  1257. #toolnavbox dl {
  1258. width: 160px;
  1259. margin: 0 auto;
  1260. padding: 0;
  1261. background: transparent;
  1262. font-size: 12px;
  1263. text-align: center;
  1264. }
  1265. #toolnavbox dt {
  1266. margin: 0;
  1267. padding: 0;
  1268. font-weight: bold;
  1269. font-size: 12px;
  1270. text-align: center;
  1271. color: #000;
  1272. border-bottom: 1px solid #fff;
  1273. background: transparent;
  1274. }
  1275. #toolnavbox dd {
  1276. margin: 0;
  1277. padding: 0;
  1278. color: #009;
  1279. text-align: left;
  1280. border-bottom:1px solid #fff;
  1281. background: #E5EDF9;
  1282. }
  1283. #toolnav img {
  1284. float: left;
  1285. width: 25px;
  1286. height: 25px;
  1287. margin: 0 4px 0 0;
  1288. }
  1289. #toolnavlist a, #toolnavlist a:link {
  1290. background: #E5EDF9;
  1291. color: #4171b5;
  1292. padding: 5px 5px 5px 10px;
  1293. margin: 0;
  1294. text-decoration: none;
  1295. display: block;
  1296. }
  1297. #toolnavlist a:hover {
  1298. background: #fff;
  1299. color:#4171b5;
  1300. }
  1301. #toolnavlist a#here {
  1302. background: #fff;
  1303. color:#4171b5;
  1304. }
  1305. /* --- end of course navigation menu section --- */
  1306. /**********************************************
  1307. * MESSAGE TOOL *
  1308. **********************************************/
  1309. /* styles from the new_message.php file */
  1310. .message_view_table{
  1311. cellspacing:0;
  1312. cellpadding:0;
  1313. background-color:#dbeaf5;
  1314. border=0;
  1315. border-collapse: collapse;
  1316. width: 100%;
  1317. }
  1318. .message_view_table th{
  1319. padding-right: 12px;
  1320. border: 1px solid gray;
  1321. background-color: #f0f0f0;
  1322. }
  1323. /* styles from the my.profile.php file */
  1324. .message-content {
  1325. float:right;
  1326. margin:20px auto;
  1327. background:#F5E38E;
  1328. border:2px solid #EBCA4F;
  1329. padding:10px;
  1330. width:200px;
  1331. position:relative;
  1332. margin-top:115px;
  1333. margin-right:-100px;
  1334. }
  1335. .message-content .message-delete {
  1336. position: absolute;
  1337. top: 10px;
  1338. right: 10px;
  1339. cursor: pointer;
  1340. }
  1341. .message-content-internal{
  1342. display:inline;
  1343. margin:20px auto;
  1344. background:#F5E38E;
  1345. border:2px solid #EBCA4F;
  1346. padding:10px;
  1347. width:100px;
  1348. position:relative;
  1349. margin-top:150px;
  1350. margin-right:-100px;
  1351. }
  1352. .message-title { color:#ff0000; font-size:15px; }
  1353. .message-body { font-size:11px; padding: 0 0 11px; color:#333; }
  1354. .message-link { color:#ff8400; }
  1355. .message-view {
  1356. float:right;
  1357. margin:20px auto;
  1358. background:#F5E38E;
  1359. border:2px solid #EBCA4F;
  1360. padding:10px;
  1361. width:100px;
  1362. position:relative;
  1363. margin-top:115px;
  1364. margin-right:-100px;
  1365. }
  1366. /**********************************************
  1367. * EXERCISE TOOL *
  1368. **********************************************/
  1369. .exercice_form {
  1370. width: 300px;
  1371. }
  1372. #validationButton{
  1373. text-decoration: none;
  1374. margin: 5px;
  1375. /*border:1px solid #999999;*/
  1376. /*background:#F0F0F0; */
  1377. padding: 3px;
  1378. padding-left:10px;
  1379. padding-right:10px;
  1380. font-weight:bold;
  1381. color:#666;
  1382. }
  1383. .rounded{
  1384. background:#ccc;
  1385. padding: 3px;
  1386. width: 200px;
  1387. margin-left:10px;
  1388. }
  1389. .rounded_inner{
  1390. background:#FFF;
  1391. padding-top: 10px;
  1392. padding-bottom: 10px;
  1393. }
  1394. .rounded_inner:hover{
  1395. color:#C802A5;
  1396. background:#F0F0F0;
  1397. }
  1398. .exercise_scenario_label{
  1399. }
  1400. .exercise_scenario_element{
  1401. }
  1402. span.checkbox {
  1403. width: 19px;
  1404. height: 25px;
  1405. padding: 0 5px 0 0;
  1406. background: url(images/checkbox.gif) no-repeat;
  1407. display: block;
  1408. clear: left;
  1409. float: left;
  1410. }
  1411. span.radio {
  1412. width: 19px;
  1413. height: 25px;
  1414. padding: 0 5px 0 0;
  1415. background: url(images/radio.gif) no-repeat;
  1416. display: block;
  1417. clear: left;
  1418. float: left;
  1419. }
  1420. #question_title{
  1421. }
  1422. #exercise_close_link{
  1423. background: url(images/close.gif) no-repeat;
  1424. padding-left: 20px;
  1425. }
  1426. #exercise_close_link:hover{
  1427. background: url(images/close_highlight.gif) no-repeat;
  1428. padding-left: 20px;
  1429. }
  1430. /*SOCIAL TOOL*/
  1431. .image-social-content {
  1432. cursor:pointer;
  1433. text-align:left;
  1434. margin:1px auto;
  1435. background:#ffffff;
  1436. border:1px solid #B8C8DC;
  1437. padding:5px;
  1438. width:100px;
  1439. position:relative;
  1440. margin-right:3px;
  1441. margin-left:4px;
  1442. margin-bottom:2px;
  1443. }
  1444. .image-social-content .image-delete {
  1445. position: absolute;
  1446. top: 1px;
  1447. right: 1px;
  1448. cursor: pointer;
  1449. }
  1450. .social-title{
  1451. color:#ffffff;
  1452. background:#4475B0;
  1453. border-bottom:1px dotted #4475B0;
  1454. border-top:1px dotted #4475B0;
  1455. padding:0px;
  1456. margin-bottom: 0px;
  1457. vertical-align:middle;
  1458. font-weight:bolder;
  1459. }
  1460. .social-subtitle{
  1461. background:#FFFFFF;
  1462. border-bottom:1px dotted #999999;
  1463. border-top:1px dotted #999999;
  1464. padding:0px;
  1465. margin-bottom: 0px;
  1466. vertical-align:middle;
  1467. }
  1468. .social-qualify{
  1469. border-bottom:1px solid #ece9d8;
  1470. border-left:1px solid #ece9d8;
  1471. background:#FFFFFF;
  1472. }
  1473. .social-qualify-display{
  1474. border-bottom:1px solid #ece9d8;
  1475. border-left:1px solid #ece9d8;
  1476. background:#FFFF66;
  1477. color:#000033;
  1478. font-weight:bold;
  1479. }
  1480. .social-info{
  1481. background:#B8C8DC;
  1482. color:#4475B0;
  1483. font-size:12px;
  1484. font-weight:bold;
  1485. }
  1486. .social-display-image{
  1487. float:right;
  1488. margin-top:-130px;
  1489. margin-right:5px;
  1490. }
  1491. .social-search-image{
  1492. color:#000033;
  1493. margin-top:2px;
  1494. border-bottom:1px solid #6B6262;
  1495. border-left:1px solid #6B6262;
  1496. border-right:1px solid #6B6262;
  1497. border-top:1px solid #6B6262;
  1498. width:250px;
  1499. }
  1500. .social-subtitle-search{
  1501. background:#ffffff;
  1502. border-top:1px #9DACBF solid;
  1503. border-bottom:1px #9DACBF solid;
  1504. }
  1505. /*****************************************************
  1506. * BUTTONS *
  1507. *****************************************************/
  1508. /* BUTTONS */
  1509. button {
  1510. margin:0 5px 3px 3px !important;
  1511. background-color: #DFDFDF;
  1512. border-width: 1px;
  1513. /* -moz-border-radius-topright : 5px;
  1514. -moz-border-radius-topleft : 5px;
  1515. -moz-border-radius-bottomright : 5px;
  1516. -moz-border-radius-bottomleft : 5px;
  1517. */
  1518. font-family: bold arial,verdana,helvetica,sans-serif;
  1519. font-size: 100%;
  1520. line-height :130%;
  1521. text-decoration: none;
  1522. color: black;
  1523. cursor: pointer;
  1524. padding:5px 15px 5px 15px;
  1525. }
  1526. button:hover {
  1527. background-color:#cbcbcb;
  1528. color:#545454;
  1529. border-style: inset;
  1530. }
  1531. /* button with image */
  1532. button.add, button.save, button.cancel, button.search, button.login {
  1533. padding-left:30px;
  1534. background-position:10px;
  1535. background-repeat:no-repeat;
  1536. }
  1537. /* POSITIVE */
  1538. button.save, button.add, button.search, button.login {
  1539. background-color:#E5EDF9;
  1540. border-color: #D4E2F6;
  1541. }
  1542. button.save:hover, button.add:hover, button.search:hover, button.login:hover {
  1543. border-color: #D4E2F6;
  1544. background-color:#D4E2F6;
  1545. }
  1546. /* NEGATIVE */
  1547. button.cancel {
  1548. background-color:#F8E8E6;
  1549. border-color: #FFE3DE;
  1550. }
  1551. button.cancel:hover {
  1552. border-color: #F4E1D0;
  1553. background-color: #FFE3DE;
  1554. }
  1555. /*including "save" image*/
  1556. button.save {
  1557. background-image:url(/main/img/button_accept.gif);
  1558. }
  1559. /*including "add" image*/
  1560. button.add {
  1561. background-image:url(/main/img/button_add.gif);
  1562. }
  1563. /*including "cancel" image*/
  1564. button.cancel {
  1565. background-image:url(/main/img/button_delete.gif);
  1566. }
  1567. /*including "search" image*/
  1568. button.search {
  1569. background-image:url(/main/img/button_search.gif);
  1570. }
  1571. /*including "login" image*/
  1572. button.login {
  1573. background-image:url(/main/img/button_login.gif);
  1574. }
  1575. /*including "add" image*/
  1576. button.add{
  1577. margin:0 10px -3px -3px !important;
  1578. padding:3px 1px 1px 23px;
  1579. /*text-decoration:none;
  1580. text-align:right;*/
  1581. width:auto;
  1582. height:100%;
  1583. background-position:3%;
  1584. background-image:url(/main/img/addd.gif);
  1585. background-repeat:no-repeat;
  1586. }