main.css 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  1. #container
  2. {
  3. position: relative;
  4. min-height: 100%;
  5. padding-bottom: 30px;
  6. width: 640px;
  7. margin-top: 45px;
  8. margin-left: auto;
  9. margin-right: auto;
  10. margin-bottom: 45px;
  11. padding: 10px;
  12. background-color: white;
  13. border: 0px solid #d5d5d5;
  14. border-radius: 7px;
  15. -moz-border-radius: 7px;
  16. -webkit-border-radius: 7px;
  17. -webkit-box-shadow: #666 0px 2px 3px;
  18. -moz-box-shadow: #666 0px 2px 3px;
  19. box-shadow: #666 0px 2px 3px;
  20. }
  21. #container h1
  22. {
  23. }
  24. #container h2
  25. {
  26. margin-top: 5px;
  27. margin-bottom: 5px;
  28. font-size: 1.7em;
  29. text-shadow: 1px 1px 2px #666;
  30. }
  31. #container h3
  32. {
  33. text-shadow: 1px 1px 1px #666;
  34. }
  35. #container h4
  36. {
  37. }
  38. .button {
  39. display: inline-block;
  40. line-height: 1;
  41. padding: 4px 7px;
  42. text-decoration: none;
  43. font-weight: bold;
  44. color: #fff;
  45. background-color: #39c;
  46. -moz-border-radius: 5px;
  47. -webkit-border-radius: 5px;
  48. -khtml-border-radius: 5px;
  49. border-radius: 5px;
  50. border: 1px solid #2b82ad;
  51. }
  52. input.button, button.button {
  53. border: 0px none;
  54. }
  55. .button:active {
  56. background-color: #39c9cc;
  57. }
  58. #container a
  59. {
  60. text-decoration: none;
  61. color: #00d0de;
  62. }
  63. #container a.button
  64. {
  65. color: white;
  66. }
  67. #container a:hover
  68. {
  69. text-decoration: underline;
  70. }
  71. #container #top-tabs, .top-tabs-right
  72. {
  73. float: left;
  74. list-style: none outside none;
  75. margin: -35px 16px 0 -6px;
  76. padding: 0;
  77. }
  78. #container #top-tabs li, .top-tabs-right
  79. {
  80. float: left;
  81. margin-left: 0px;
  82. padding-top: 3px;
  83. padding-left: 5px;
  84. padding-right: 5px;
  85. padding-bottom: 3px;
  86. background-color: #e9e9e9;
  87. border-top: 1px solid #d5d5d5;
  88. border-left: 1px solid #d5d5d5;
  89. border-right: 1px solid #d5d5d5;
  90. border-radius: 5px 5px 0px 0px;
  91. -moz-border-radius: 5px 5px 0px 0px;
  92. -webkit-border-radius: 5px 5px 0px 0px;
  93. }
  94. #container #top-tabs li.active, .top-tabs-right ul.active, .top-tabs-right ul.active li
  95. {
  96. background-color: white;
  97. }
  98. #container #top-tabs li a, #container .top-tabs-right li a
  99. {
  100. text-decoration: none;
  101. color: black;
  102. }
  103. .top-tabs-right
  104. {
  105. float: right;
  106. margin-right: -5px;
  107. }
  108. .top-tabs-right.active
  109. {
  110. background-color: white;
  111. }
  112. #top_bar
  113. {
  114. width: 220px;
  115. background-color: white;
  116. padding: 0px;
  117. margin-left: auto;
  118. margin-right: auto;
  119. border-radius: 0px 0px 4px 4px;
  120. -moz-border-radius: 0px 0px 4px 4px;
  121. -webkit-border-radius: 0px 0px 4px 4px;
  122. text-align: center;
  123. }
  124. #top_bar a
  125. {
  126. text-decoration: none;
  127. color: black;
  128. padding-left: 3px; padding-right: 3px;
  129. }
  130. /*#top_bar ul
  131. {
  132. text-align: center;
  133. margin-top: -5px;
  134. }
  135. #top_bar ul li
  136. {
  137. display: inline;
  138. float: left;
  139. list-style: none;
  140. padding-left: 6px;
  141. }
  142. #top_bar ul li a
  143. {
  144. text-decoration: none;
  145. color: black;
  146. }*/
  147. ul.inline
  148. {
  149. }
  150. ul.inline li
  151. {
  152. display: inline;
  153. }
  154. /* Messages flash */
  155. .message
  156. {
  157. -webkit-background-size: 40px 40px;
  158. -moz-background-size: 40px 40px;
  159. background-size: 40px 40px;
  160. background-image: -webkit-gradient(linear, left top, right bottom,
  161. color-stop(.25, rgba(255, 255, 255, .05)), color-stop(.25, transparent),
  162. color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .05)),
  163. color-stop(.75, rgba(255, 255, 255, .05)), color-stop(.75, transparent),
  164. to(transparent));
  165. background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  166. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  167. transparent 75%, transparent);
  168. background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  169. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  170. transparent 75%, transparent);
  171. background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  172. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  173. transparent 75%, transparent);
  174. background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  175. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  176. transparent 75%, transparent);
  177. background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  178. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  179. transparent 75%, transparent);
  180. -moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  181. -webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  182. box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  183. width: 100%;
  184. border: 1px solid;
  185. color: #fff;
  186. padding: 15px;
  187. position: fixed;
  188. _position: absolute;
  189. text-shadow: 0 1px 0 rgba(0,0,0,.5);
  190. -webkit-animation: animate-bg 5s linear infinite;
  191. -moz-animation: animate-bg 5s linear infinite;
  192. }
  193. .info, .fos_user_info
  194. {
  195. background-color: #4ea5cd;
  196. border-color: #3b8eb5;
  197. }
  198. .error, .fos_user_error
  199. {
  200. background-color: #de4343;
  201. border-color: #c43d3d;
  202. }
  203. .warning, .fos_user_warning
  204. {
  205. background-color: #eaaf51;
  206. border-color: #d99a36;
  207. }
  208. .success, .fos_user_success
  209. {
  210. background-color: #61b832;
  211. border-color: #55a12c;
  212. }
  213. .message h3
  214. {
  215. margin: 0 0 5px 0;
  216. }
  217. .message p
  218. {
  219. margin: 0;
  220. }
  221. .message a.message-close
  222. {
  223. float: right;
  224. margin-top: -14px;
  225. margin-right: 18px;
  226. margin-bottom: -11px;
  227. }
  228. .message a.message-close img:HOVER
  229. {
  230. width: 52px;
  231. height: 52px;
  232. margin-bottom: -13px;
  233. }
  234. @-webkit-keyframes animate-bg
  235. {
  236. from {
  237. background-position: 0 0;
  238. }
  239. to {
  240. background-position: -80px 0;
  241. }
  242. }
  243. @-moz-keyframes animate-bg
  244. {
  245. from {
  246. background-position: 0 0;
  247. }
  248. to {
  249. background-position: -80px 0;
  250. }
  251. }
  252. /* Message flash end */
  253. #choose_language
  254. {
  255. float: right;
  256. margin-right: 5px;
  257. }
  258. #choose_language a
  259. {
  260. text-decoration: none;
  261. color: black;
  262. }
  263. .error_list
  264. {
  265. font-size: 87%;
  266. color: #dd0101;
  267. margin-left: 24px;
  268. margin-top: 2px;
  269. margin-bottom: 2px;
  270. margin-right: 2px;
  271. }
  272. .error_list li
  273. {
  274. list-style: url(/bundles/muzichcore/img/1323874685_warning.png);
  275. }
  276. /* Debut CSS pour tags */
  277. pre code {background: #ccc; padding:2px 0; display: block; margin-top:4px;}
  278. .ui-autocomplete {
  279. font-size:12px;
  280. border:1px solid #ddd;
  281. background:#fff;
  282. list-style:none;
  283. position: absolute;
  284. cursor: default;
  285. list-style-type: none;
  286. width: 300px;
  287. }
  288. .ui-autocomplete li {margin-right:8px; float: left;}
  289. .ui-autocomplete li a {display:block; padding:4px;}
  290. .ui-autocomplete li a.ui-state-hover,
  291. .ui-autocomplete li a:hover {background:#eee;}
  292. /**/
  293. ul.tagbox {
  294. background: #fff;
  295. cursor: text;
  296. border: none;
  297. overflow: hidden;
  298. padding: 0 0 1px 3px;
  299. margin-left: 0px;
  300. }
  301. ul.tagbox li {
  302. margin:0;
  303. }
  304. ul.tagbox li.tag {
  305. float: left;
  306. line-height: 1;
  307. list-style-type: none;
  308. margin-top: 3px;
  309. margin-right: 3px;
  310. font-size:13px;
  311. border: 1px solid #cad8f3;
  312. background: #dee7f8;
  313. margin-bottom: 1px;
  314. position: relative;
  315. display: inline-block;
  316. padding-left: 7px;
  317. padding-top: 4px;
  318. padding-right: 14px;
  319. padding-bottom: 4px;
  320. text-decoration: none;
  321. font-weight: bold;
  322. color: #fff;
  323. background-color: #39c;
  324. -moz-border-radius: 5px;
  325. -webkit-border-radius: 5px;
  326. -khtml-border-radius: 5px;
  327. border-radius: 5px;
  328. }
  329. ul.tagbox li.input {display:block; float:left;}
  330. ul.tagbox input:focus {
  331. border-color: #fff;
  332. }
  333. ul.tagbox input {
  334. width: 50px;
  335. margin: 0;
  336. border: 0;
  337. outline: 0;
  338. line-height:1.2;
  339. padding: 3px 0;
  340. font-size:12px;
  341. }
  342. ul.tagbox a.close {
  343. position: absolute;
  344. right: 4px; top: 5px;
  345. display: block;
  346. text-indent:-9999px;
  347. cursor:pointer;
  348. width: 7px; height: 7px;
  349. font-size: 1px;
  350. background: url('/bundles/muzichcore/img/tag_close.gif');
  351. background-position: 0px 100%;
  352. margin-top: 2px;
  353. }
  354. ul.tagbox a.close:hover {
  355. background-position: 7px;
  356. }
  357. /* Fin CSS pour tags */
  358. /* Debut CSS pour elements */
  359. li.element
  360. {
  361. list-style: none outside none;
  362. margin-top: 5px;
  363. margin-bottom: 5px;
  364. padding: 5px;
  365. }
  366. li.element a.favorite_link
  367. {
  368. position: relative;
  369. top: 0px;
  370. left: 483px;
  371. }
  372. li.element a.element_open
  373. {
  374. font-weight: bold;
  375. }
  376. li.element div.element_embed
  377. {
  378. text-align: center;
  379. }
  380. li.element td.element_content
  381. {
  382. vertical-align: top;
  383. padding-left: 5px;
  384. }
  385. li.element span.element_name
  386. {
  387. margin-left: -20px;
  388. }
  389. li.element td.element_thumbnail
  390. {
  391. background-image: url(/bundles/muzichcore/img/nothumb.png);
  392. width: 120px;
  393. height: 90px;
  394. }
  395. li.element img.element_thumbnail
  396. {
  397. width: 120px;
  398. height: 90px;
  399. }
  400. #container li.element span.element_name a
  401. {
  402. color: black;
  403. }
  404. ul.elements
  405. {
  406. margin-left: 0px;
  407. }
  408. ul.elements li.even
  409. {
  410. background-color: #d9f7ff;
  411. }
  412. .elements ul.element_tags
  413. {
  414. margin-left: 10px;
  415. margin-top: 0px;
  416. margin-bottom: 0px;
  417. }
  418. .elements ul.element_tags li
  419. {
  420. display: inline;
  421. font-size: 90%;
  422. }
  423. /* FIN CSS pour elements */
  424. span.help
  425. {
  426. font-size: 10px;
  427. padding-left: 18px;
  428. background-image: url(/bundles/muzichcore/img/1325329213_system-help.png);
  429. background-repeat: no-repeat;
  430. background-position: left top;
  431. }
  432. span.sinfo
  433. {
  434. font-size: 10px;
  435. padding-left: 18px;
  436. background-image: url(/bundles/muzichcore/img/1326549580_info.png);
  437. background-repeat: no-repeat;
  438. background-position: left top;
  439. }
  440. #bottomContainer a
  441. {
  442. text-decoration: none;
  443. color: black;
  444. }
  445. #bottomContainer
  446. {
  447. padding: 2px;
  448. font-size: 85%;
  449. text-align: center;
  450. }
  451. input.main
  452. {
  453. font-weight: bold;
  454. }
  455. input.clear, input.mytags
  456. {
  457. font-size: 80%;
  458. }
  459. ul.tagbox input[type="text"]
  460. {
  461. -moz-border-radius: 5px;
  462. -webkit-border-radius: 5px;
  463. -khtml-border-radius: 5px;
  464. border-radius: 5px;
  465. background-color: #bdf1fe;
  466. padding-left: 3px;
  467. }
  468. ul.tagbox li.input
  469. {
  470. padding-top: 2px;
  471. }
  472. ul.tagbox input[type="text"]
  473. {
  474. height: 14px;
  475. margin-top: 3px;
  476. width: 200px;
  477. color: #676767;
  478. font-weight: bold;
  479. }
  480. ul.tagbox input[type="text"]:FOCUS
  481. {
  482. background-image: linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  483. background-image: -o-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  484. background-image: -moz-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  485. background-image: -webkit-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  486. background-image: -ms-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  487. background-image: -webkit-gradient(
  488. linear,
  489. left bottom,
  490. right bottom,
  491. color-stop(0.1, rgb(137,232,253)),
  492. color-stop(0.49, rgb(168,238,255)),
  493. color-stop(1, rgb(189,241,254))
  494. );
  495. }
  496. div.tag_loader_div, div.loader
  497. {
  498. text-align: center;
  499. }
  500. .tag_loader, element_loader
  501. {
  502. margin-left: auto;
  503. marin-right: auto;
  504. }
  505. .element_name
  506. {
  507. font-weight: bold;
  508. }
  509. div.no_elements
  510. {
  511. text-align: center;
  512. background-color: #d9f7ff;
  513. }
  514. /* Recherche de tags dynamique */
  515. div.search_tag_list
  516. {
  517. position: absolute;
  518. background-color: white;
  519. width: 400px;
  520. padding: 2px;
  521. border: 0px solid #d5d5d5;
  522. border-radius: 7px;
  523. -moz-border-radius: 7px;
  524. -webkit-border-radius: 7px;
  525. -webkit-box-shadow: #666 0px 2px 3px;
  526. -moz-box-shadow: #666 0px 2px 3px;
  527. box-shadow: #666 0px 2px 3px;
  528. }
  529. div.search_tag_list span.info
  530. {
  531. background-color: white;
  532. padding: 2px;
  533. }
  534. div.search_tag_list ul.search_tag_list
  535. {
  536. list-style-image: none;
  537. padding:0;
  538. margin:0;
  539. list-style-type:none;
  540. overflow: hidden;
  541. }
  542. div.search_tag_list ul.search_tag_list li
  543. {
  544. float: left;
  545. margin-right: 4px;
  546. margin-left: 4px;
  547. margin-top: 2px;
  548. margin-bottom: 2px;
  549. padding: 2px;
  550. background-color: #d9f7ff;
  551. }
  552. div.search_tag_list ul.search_tag_list li:hover
  553. {
  554. background-color: #74dffe;
  555. }
  556. #container ul.search_tag_list li a
  557. {
  558. color: black;
  559. }
  560. .elements_loader_div
  561. {
  562. text-align: center;
  563. }
  564. .elements_loader_div img
  565. {
  566. margin-left: auto;
  567. margin-right: auto;
  568. }
  569. /* jConfirmAction */
  570. div.question {
  571. position: absolute;
  572. display: inline;
  573. text-align: center;
  574. width: 174px;
  575. height: 78px;
  576. font-size: 13px;
  577. line-height: 1.5em;
  578. background: url('/js/jConfirmAction/images/bubble.png') left top no-repeat;
  579. padding: 10px 0 0 0;
  580. text-shadow: 0px 1px 0px #fff;
  581. margin-left: -7em;
  582. margin-top: -6em;
  583. opacity: 0;
  584. }
  585. div.question .yes, .cancel {
  586. margin-top: .5em;
  587. margin-right: .5em;
  588. cursor: pointer;
  589. display: inline-block;
  590. width: 63px;
  591. height: 21px;
  592. color: #fff;
  593. text-shadow: 0px 1px 0px #000;
  594. background: url('/js/jConfirmAction/images/button.png') left top no-repeat;
  595. }
  596. div.question .title {
  597. font-size: 30px;
  598. margin-bottom: 1.5em;
  599. font-weight: bold;
  600. font-style: italic;
  601. text-shadow: 0px 2px 0px #fff;
  602. }