base.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987
  1. /*
  2. DJANGO Admin styles
  3. */
  4. @import url(fonts.css);
  5. body {
  6. margin: 0;
  7. padding: 0;
  8. font-size: 14px;
  9. font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif;
  10. color: #333;
  11. background: #fff;
  12. }
  13. /* LINKS */
  14. a:link, a:visited {
  15. color: #447e9b;
  16. text-decoration: none;
  17. }
  18. a:focus, a:hover {
  19. color: #036;
  20. }
  21. a:focus {
  22. text-decoration: underline;
  23. }
  24. a img {
  25. border: none;
  26. }
  27. a.section:link, a.section:visited {
  28. color: #fff;
  29. text-decoration: none;
  30. }
  31. a.section:focus, a.section:hover {
  32. text-decoration: underline;
  33. }
  34. /* GLOBAL DEFAULTS */
  35. p, ol, ul, dl {
  36. margin: .2em 0 .8em 0;
  37. }
  38. p {
  39. padding: 0;
  40. line-height: 140%;
  41. }
  42. h1,h2,h3,h4,h5 {
  43. font-weight: bold;
  44. }
  45. h1 {
  46. margin: 0 0 20px;
  47. font-weight: 300;
  48. font-size: 20px;
  49. color: #666;
  50. }
  51. h2 {
  52. font-size: 16px;
  53. margin: 1em 0 .5em 0;
  54. }
  55. h2.subhead {
  56. font-weight: normal;
  57. margin-top: 0;
  58. }
  59. h3 {
  60. font-size: 14px;
  61. margin: .8em 0 .3em 0;
  62. color: #666;
  63. font-weight: bold;
  64. }
  65. h4 {
  66. font-size: 12px;
  67. margin: 1em 0 .8em 0;
  68. padding-bottom: 3px;
  69. }
  70. h5 {
  71. font-size: 10px;
  72. margin: 1.5em 0 .5em 0;
  73. color: #666;
  74. text-transform: uppercase;
  75. letter-spacing: 1px;
  76. }
  77. ul li {
  78. list-style-type: square;
  79. padding: 1px 0;
  80. }
  81. li ul {
  82. margin-bottom: 0;
  83. }
  84. li, dt, dd {
  85. font-size: 13px;
  86. line-height: 20px;
  87. }
  88. dt {
  89. font-weight: bold;
  90. margin-top: 4px;
  91. }
  92. dd {
  93. margin-left: 0;
  94. }
  95. form {
  96. margin: 0;
  97. padding: 0;
  98. }
  99. fieldset {
  100. margin: 0;
  101. padding: 0;
  102. border: none;
  103. border-top: 1px solid #eee;
  104. }
  105. blockquote {
  106. font-size: 11px;
  107. color: #777;
  108. margin-left: 2px;
  109. padding-left: 10px;
  110. border-left: 5px solid #ddd;
  111. }
  112. code, pre {
  113. font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
  114. color: #666;
  115. font-size: 12px;
  116. }
  117. pre.literal-block {
  118. margin: 10px;
  119. background: #eee;
  120. padding: 6px 8px;
  121. }
  122. code strong {
  123. color: #930;
  124. }
  125. hr {
  126. clear: both;
  127. color: #eee;
  128. background-color: #eee;
  129. height: 1px;
  130. border: none;
  131. margin: 0;
  132. padding: 0;
  133. font-size: 1px;
  134. line-height: 1px;
  135. }
  136. /* TEXT STYLES & MODIFIERS */
  137. .small {
  138. font-size: 11px;
  139. }
  140. .tiny {
  141. font-size: 10px;
  142. }
  143. p.tiny {
  144. margin-top: -2px;
  145. }
  146. .mini {
  147. font-size: 10px;
  148. }
  149. p.mini {
  150. margin-top: -3px;
  151. }
  152. .help, p.help, form p.help, div.help, form div.help, div.help li {
  153. font-size: 11px;
  154. color: #999;
  155. }
  156. div.help ul {
  157. margin-bottom: 0;
  158. }
  159. .help-tooltip {
  160. cursor: help;
  161. }
  162. p img, h1 img, h2 img, h3 img, h4 img, td img {
  163. vertical-align: middle;
  164. }
  165. .quiet, a.quiet:link, a.quiet:visited {
  166. color: #999;
  167. font-weight: normal;
  168. }
  169. .float-right {
  170. float: right;
  171. }
  172. .float-left {
  173. float: left;
  174. }
  175. .clear {
  176. clear: both;
  177. }
  178. .align-left {
  179. text-align: left;
  180. }
  181. .align-right {
  182. text-align: right;
  183. }
  184. .example {
  185. margin: 10px 0;
  186. padding: 5px 10px;
  187. background: #efefef;
  188. }
  189. .nowrap {
  190. white-space: nowrap;
  191. }
  192. /* TABLES */
  193. table {
  194. border-collapse: collapse;
  195. border-color: #ccc;
  196. }
  197. td, th {
  198. font-size: 13px;
  199. line-height: 16px;
  200. border-bottom: 1px solid #eee;
  201. vertical-align: top;
  202. padding: 8px;
  203. font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif;
  204. }
  205. th {
  206. font-weight: 600;
  207. text-align: left;
  208. }
  209. thead th,
  210. tfoot td {
  211. color: #666;
  212. padding: 5px 10px;
  213. font-size: 11px;
  214. background: #fff;
  215. border: none;
  216. border-top: 1px solid #eee;
  217. border-bottom: 1px solid #eee;
  218. }
  219. tfoot td {
  220. border-bottom: none;
  221. border-top: 1px solid #eee;
  222. }
  223. thead th.required {
  224. color: #000;
  225. }
  226. tr.alt {
  227. background: #f6f6f6;
  228. }
  229. .row1 {
  230. background: #fff;
  231. }
  232. .row2 {
  233. background: #f9f9f9;
  234. }
  235. /* SORTABLE TABLES */
  236. thead th {
  237. padding: 5px 10px;
  238. line-height: normal;
  239. text-transform: uppercase;
  240. background: #f6f6f6;
  241. }
  242. thead th a:link, thead th a:visited {
  243. color: #666;
  244. }
  245. thead th.sorted {
  246. background: #eee;
  247. }
  248. thead th.sorted .text {
  249. padding-right: 42px;
  250. }
  251. table thead th .text span {
  252. padding: 8px 10px;
  253. display: block;
  254. }
  255. table thead th .text a {
  256. display: block;
  257. cursor: pointer;
  258. padding: 8px 10px;
  259. }
  260. table thead th .text a:focus, table thead th .text a:hover {
  261. background: #eee;
  262. }
  263. thead th.sorted a.sortremove {
  264. visibility: hidden;
  265. }
  266. table thead th.sorted:hover a.sortremove {
  267. visibility: visible;
  268. }
  269. table thead th.sorted .sortoptions {
  270. display: block;
  271. padding: 9px 5px 0 5px;
  272. float: right;
  273. text-align: right;
  274. }
  275. table thead th.sorted .sortpriority {
  276. font-size: .8em;
  277. min-width: 12px;
  278. text-align: center;
  279. vertical-align: 3px;
  280. margin-left: 2px;
  281. margin-right: 2px;
  282. }
  283. table thead th.sorted .sortoptions a {
  284. position: relative;
  285. width: 14px;
  286. height: 14px;
  287. display: inline-block;
  288. background: url(../img/sorting-icons.svg) 0 0 no-repeat;
  289. background-size: 14px auto;
  290. }
  291. table thead th.sorted .sortoptions a.sortremove {
  292. background-position: 0 0;
  293. }
  294. table thead th.sorted .sortoptions a.sortremove:after {
  295. content: '\\';
  296. position: absolute;
  297. top: -6px;
  298. left: 3px;
  299. font-weight: 200;
  300. font-size: 18px;
  301. color: #999;
  302. }
  303. table thead th.sorted .sortoptions a.sortremove:focus:after,
  304. table thead th.sorted .sortoptions a.sortremove:hover:after {
  305. color: #447e9b;
  306. }
  307. table thead th.sorted .sortoptions a.sortremove:focus,
  308. table thead th.sorted .sortoptions a.sortremove:hover {
  309. background-position: 0 -14px;
  310. }
  311. table thead th.sorted .sortoptions a.ascending {
  312. background-position: 0 -28px;
  313. }
  314. table thead th.sorted .sortoptions a.ascending:focus,
  315. table thead th.sorted .sortoptions a.ascending:hover {
  316. background-position: 0 -42px;
  317. }
  318. table thead th.sorted .sortoptions a.descending {
  319. top: 1px;
  320. background-position: 0 -56px;
  321. }
  322. table thead th.sorted .sortoptions a.descending:focus,
  323. table thead th.sorted .sortoptions a.descending:hover {
  324. background-position: 0 -70px;
  325. }
  326. /* FORM DEFAULTS */
  327. input, textarea, select, .form-row p, form .button {
  328. margin: 2px 0;
  329. padding: 2px 3px;
  330. vertical-align: middle;
  331. font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif;
  332. font-weight: normal;
  333. font-size: 13px;
  334. }
  335. .form-row div.help {
  336. padding: 2px 3px;
  337. }
  338. textarea {
  339. vertical-align: top;
  340. }
  341. input[type=text], input[type=password], input[type=email], input[type=url],
  342. input[type=number], input[type=tel], textarea, select, .vTextField {
  343. border: 1px solid #ccc;
  344. border-radius: 4px;
  345. padding: 5px 6px;
  346. margin-top: 0;
  347. }
  348. input[type=text]:focus, input[type=password]:focus, input[type=email]:focus,
  349. input[type=url]:focus, input[type=number]:focus, input[type=tel]:focus,
  350. textarea:focus, select:focus, .vTextField:focus {
  351. border-color: #999;
  352. }
  353. select {
  354. height: 30px;
  355. }
  356. select[multiple] {
  357. /* Allow HTML size attribute to override the height in the rule above. */
  358. height: auto;
  359. min-height: 150px;
  360. }
  361. /* FORM BUTTONS */
  362. .button, input[type=submit], input[type=button], .submit-row input, a.button {
  363. background: #79aec8;
  364. padding: 10px 15px;
  365. border: none;
  366. border-radius: 4px;
  367. color: #fff;
  368. cursor: pointer;
  369. }
  370. a.button {
  371. padding: 4px 5px;
  372. }
  373. .button:active, input[type=submit]:active, input[type=button]:active,
  374. .button:focus, input[type=submit]:focus, input[type=button]:focus,
  375. .button:hover, input[type=submit]:hover, input[type=button]:hover {
  376. background: #609ab6;
  377. }
  378. .button[disabled], input[type=submit][disabled], input[type=button][disabled] {
  379. opacity: 0.4;
  380. }
  381. .button.default, input[type=submit].default, .submit-row input.default {
  382. float: right;
  383. border: none;
  384. font-weight: 400;
  385. background: #417690;
  386. }
  387. .button.default:active, input[type=submit].default:active,
  388. .button.default:focus, input[type=submit].default:focus,
  389. .button.default:hover, input[type=submit].default:hover {
  390. background: #205067;
  391. }
  392. .button[disabled].default,
  393. input[type=submit][disabled].default,
  394. input[type=button][disabled].default {
  395. opacity: 0.4;
  396. }
  397. /* MODULES */
  398. .module {
  399. border: none;
  400. margin-bottom: 30px;
  401. background: #fff;
  402. }
  403. .module p, .module ul, .module h3, .module h4, .module dl, .module pre {
  404. padding-left: 10px;
  405. padding-right: 10px;
  406. }
  407. .module blockquote {
  408. margin-left: 12px;
  409. }
  410. .module ul, .module ol {
  411. margin-left: 1.5em;
  412. }
  413. .module h3 {
  414. margin-top: .6em;
  415. }
  416. .module h2, .module caption, .inline-group h2 {
  417. margin: 0;
  418. padding: 8px;
  419. font-weight: 400;
  420. font-size: 13px;
  421. text-align: left;
  422. background: #79aec8;
  423. color: #fff;
  424. }
  425. .module caption,
  426. .inline-group h2 {
  427. font-size: 12px;
  428. letter-spacing: 0.5px;
  429. text-transform: uppercase;
  430. }
  431. .module table {
  432. border-collapse: collapse;
  433. }
  434. /* MESSAGES & ERRORS */
  435. ul.messagelist {
  436. padding: 0;
  437. margin: 0;
  438. }
  439. ul.messagelist li {
  440. display: block;
  441. font-weight: 400;
  442. font-size: 13px;
  443. padding: 10px 10px 10px 65px;
  444. margin: 0 0 10px 0;
  445. background: #dfd url(../img/icon-yes.svg) 40px 12px no-repeat;
  446. background-size: 16px auto;
  447. color: #333;
  448. }
  449. ul.messagelist li.warning {
  450. background: #ffc url(../img/icon-alert.svg) 40px 14px no-repeat;
  451. background-size: 14px auto;
  452. }
  453. ul.messagelist li.error {
  454. background: #ffefef url(../img/icon-no.svg) 40px 12px no-repeat;
  455. background-size: 16px auto;
  456. }
  457. .errornote {
  458. font-size: 14px;
  459. font-weight: 700;
  460. display: block;
  461. padding: 10px 12px;
  462. margin: 0 0 10px 0;
  463. color: #ba2121;
  464. border: 1px solid #ba2121;
  465. border-radius: 4px;
  466. background-color: #fff;
  467. background-position: 5px 12px;
  468. }
  469. ul.errorlist {
  470. margin: 0 0 4px;
  471. padding: 0;
  472. color: #ba2121;
  473. background: #fff;
  474. }
  475. ul.errorlist li {
  476. font-size: 13px;
  477. display: block;
  478. margin-bottom: 4px;
  479. }
  480. ul.errorlist li:first-child {
  481. margin-top: 0;
  482. }
  483. ul.errorlist li a {
  484. color: inherit;
  485. text-decoration: underline;
  486. }
  487. td ul.errorlist {
  488. margin: 0;
  489. padding: 0;
  490. }
  491. td ul.errorlist li {
  492. margin: 0;
  493. }
  494. .form-row.errors {
  495. margin: 0;
  496. border: none;
  497. border-bottom: 1px solid #eee;
  498. background: none;
  499. }
  500. .form-row.errors ul.errorlist li {
  501. padding-left: 0;
  502. }
  503. .errors input, .errors select, .errors textarea {
  504. border: 1px solid #ba2121;
  505. }
  506. div.system-message {
  507. background: #ffc;
  508. margin: 10px;
  509. padding: 6px 8px;
  510. font-size: .8em;
  511. }
  512. div.system-message p.system-message-title {
  513. padding: 4px 5px 4px 25px;
  514. margin: 0;
  515. color: #c11;
  516. background: #ffefef url(../img/icon-no.svg) 5px 5px no-repeat;
  517. }
  518. .description {
  519. font-size: 12px;
  520. padding: 5px 0 0 12px;
  521. }
  522. /* BREADCRUMBS */
  523. div.breadcrumbs {
  524. background: #79aec8;
  525. padding: 10px 40px;
  526. border: none;
  527. font-size: 14px;
  528. color: #c4dce8;
  529. text-align: left;
  530. }
  531. div.breadcrumbs a {
  532. color: #fff;
  533. }
  534. div.breadcrumbs a:focus, div.breadcrumbs a:hover {
  535. color: #c4dce8;
  536. }
  537. /* ACTION ICONS */
  538. .viewlink, .inlineviewlink {
  539. padding-left: 16px;
  540. background: url(../img/icon-viewlink.svg) 0 1px no-repeat;
  541. }
  542. .addlink {
  543. padding-left: 16px;
  544. background: url(../img/icon-addlink.svg) 0 1px no-repeat;
  545. }
  546. .changelink, .inlinechangelink {
  547. padding-left: 16px;
  548. background: url(../img/icon-changelink.svg) 0 1px no-repeat;
  549. }
  550. .deletelink {
  551. padding-left: 16px;
  552. background: url(../img/icon-deletelink.svg) 0 1px no-repeat;
  553. }
  554. a.deletelink:link, a.deletelink:visited {
  555. color: #CC3434;
  556. }
  557. a.deletelink:focus, a.deletelink:hover {
  558. color: #993333;
  559. text-decoration: none;
  560. }
  561. /* OBJECT TOOLS */
  562. .object-tools {
  563. font-size: 10px;
  564. font-weight: bold;
  565. padding-left: 0;
  566. float: right;
  567. position: relative;
  568. margin-top: -48px;
  569. }
  570. .form-row .object-tools {
  571. margin-top: 5px;
  572. margin-bottom: 5px;
  573. float: none;
  574. height: 2em;
  575. padding-left: 3.5em;
  576. }
  577. .object-tools li {
  578. display: block;
  579. float: left;
  580. margin-left: 5px;
  581. height: 16px;
  582. }
  583. .object-tools a {
  584. border-radius: 15px;
  585. }
  586. .object-tools a:link, .object-tools a:visited {
  587. display: block;
  588. float: left;
  589. padding: 3px 12px;
  590. background: #999;
  591. font-weight: 400;
  592. font-size: 11px;
  593. text-transform: uppercase;
  594. letter-spacing: 0.5px;
  595. color: #fff;
  596. }
  597. .object-tools a:focus, .object-tools a:hover {
  598. background-color: #417690;
  599. }
  600. .object-tools a:focus{
  601. text-decoration: none;
  602. }
  603. .object-tools a.viewsitelink, .object-tools a.golink,.object-tools a.addlink {
  604. background-repeat: no-repeat;
  605. background-position: right 7px center;
  606. padding-right: 26px;
  607. }
  608. .object-tools a.viewsitelink, .object-tools a.golink {
  609. background-image: url(../img/tooltag-arrowright.svg);
  610. }
  611. .object-tools a.addlink {
  612. background-image: url(../img/tooltag-add.svg);
  613. }
  614. /* OBJECT HISTORY */
  615. table#change-history {
  616. width: 100%;
  617. }
  618. table#change-history tbody th {
  619. width: 16em;
  620. }
  621. /* PAGE STRUCTURE */
  622. #container {
  623. position: relative;
  624. width: 100%;
  625. min-width: 980px;
  626. padding: 0;
  627. }
  628. #content {
  629. padding: 20px 40px;
  630. }
  631. .dashboard #content {
  632. width: 600px;
  633. }
  634. #content-main {
  635. float: left;
  636. width: 100%;
  637. }
  638. #content-related {
  639. float: right;
  640. width: 260px;
  641. position: relative;
  642. margin-right: -300px;
  643. }
  644. #footer {
  645. clear: both;
  646. padding: 10px;
  647. }
  648. /* COLUMN TYPES */
  649. .colMS {
  650. margin-right: 300px;
  651. }
  652. .colSM {
  653. margin-left: 300px;
  654. }
  655. .colSM #content-related {
  656. float: left;
  657. margin-right: 0;
  658. margin-left: -300px;
  659. }
  660. .colSM #content-main {
  661. float: right;
  662. }
  663. .popup .colM {
  664. width: auto;
  665. }
  666. /* HEADER */
  667. #header {
  668. width: auto;
  669. height: auto;
  670. display: flex;
  671. justify-content: space-between;
  672. align-items: center;
  673. padding: 10px 40px;
  674. background: #417690;
  675. color: #ffc;
  676. overflow: hidden;
  677. }
  678. #header a:link, #header a:visited {
  679. color: #fff;
  680. }
  681. #header a:focus , #header a:hover {
  682. text-decoration: underline;
  683. }
  684. #branding {
  685. float: left;
  686. }
  687. #branding h1 {
  688. padding: 0;
  689. margin: 0 20px 0 0;
  690. font-weight: 300;
  691. font-size: 24px;
  692. color: #f5dd5d;
  693. }
  694. #branding h1, #branding h1 a:link, #branding h1 a:visited {
  695. color: #f5dd5d;
  696. }
  697. #branding h2 {
  698. padding: 0 10px;
  699. font-size: 14px;
  700. margin: -8px 0 8px 0;
  701. font-weight: normal;
  702. color: #ffc;
  703. }
  704. #branding a:hover {
  705. text-decoration: none;
  706. }
  707. #user-tools {
  708. float: right;
  709. padding: 0;
  710. margin: 0 0 0 20px;
  711. font-weight: 300;
  712. font-size: 11px;
  713. letter-spacing: 0.5px;
  714. text-transform: uppercase;
  715. text-align: right;
  716. }
  717. #user-tools a {
  718. border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  719. }
  720. #user-tools a:focus, #user-tools a:hover {
  721. text-decoration: none;
  722. border-bottom-color: #79aec8;
  723. color: #79aec8;
  724. }
  725. /* SIDEBAR */
  726. #content-related {
  727. background: #f8f8f8;
  728. }
  729. #content-related .module {
  730. background: none;
  731. }
  732. #content-related h3 {
  733. font-size: 14px;
  734. color: #666;
  735. padding: 0 16px;
  736. margin: 0 0 16px;
  737. }
  738. #content-related h4 {
  739. font-size: 13px;
  740. }
  741. #content-related p {
  742. padding-left: 16px;
  743. padding-right: 16px;
  744. }
  745. #content-related .actionlist {
  746. padding: 0;
  747. margin: 16px;
  748. }
  749. #content-related .actionlist li {
  750. line-height: 1.2;
  751. margin-bottom: 10px;
  752. padding-left: 18px;
  753. }
  754. #content-related .module h2 {
  755. background: none;
  756. padding: 16px;
  757. margin-bottom: 16px;
  758. border-bottom: 1px solid #eaeaea;
  759. font-size: 18px;
  760. color: #333;
  761. }
  762. .delete-confirmation form input[type="submit"] {
  763. background: #ba2121;
  764. border-radius: 4px;
  765. padding: 10px 15px;
  766. color: #fff;
  767. }
  768. .delete-confirmation form input[type="submit"]:active,
  769. .delete-confirmation form input[type="submit"]:focus,
  770. .delete-confirmation form input[type="submit"]:hover {
  771. background: #a41515;
  772. }
  773. .delete-confirmation form .cancel-link {
  774. display: inline-block;
  775. vertical-align: middle;
  776. height: 15px;
  777. line-height: 15px;
  778. background: #ddd;
  779. border-radius: 4px;
  780. padding: 10px 15px;
  781. color: #333;
  782. margin: 0 0 0 10px;
  783. }
  784. .delete-confirmation form .cancel-link:active,
  785. .delete-confirmation form .cancel-link:focus,
  786. .delete-confirmation form .cancel-link:hover {
  787. background: #ccc;
  788. }
  789. /* POPUP */
  790. .popup #content {
  791. padding: 20px;
  792. }
  793. .popup #container {
  794. min-width: 0;
  795. }
  796. .popup #header {
  797. padding: 10px 20px;
  798. }