_changeform.scss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882
  1. @import "globals";
  2. /* FORM ROWS */
  3. .form-row {
  4. overflow: hidden;
  5. padding: 10px;
  6. img, input {
  7. vertical-align: middle;
  8. }
  9. label input[type="checkbox"] {
  10. margin-top: 0;
  11. vertical-align: 0;
  12. }
  13. p {
  14. padding-left: 0;
  15. }
  16. .select2 {
  17. @include for-phone {
  18. width: auto !important;
  19. max-width: 100%;
  20. }
  21. }
  22. }
  23. .hidden {
  24. display: none;
  25. }
  26. /* FORM LABELS */
  27. label {
  28. .required &, &.required {
  29. font-weight: bold;
  30. &:after {
  31. content: "*";
  32. }
  33. }
  34. .form-row.errors & {
  35. color: $error-text-color;
  36. }
  37. }
  38. /* RADIO BUTTONS */
  39. form {
  40. ul.radiolist {
  41. li {
  42. list-style-type: none;
  43. }
  44. label {
  45. float: none;
  46. display: inline;
  47. }
  48. input[type="radio"] {
  49. margin: -2px 4px 0 0;
  50. padding: 0;
  51. }
  52. }
  53. ul.inline {
  54. margin-left: 0;
  55. padding: 0;
  56. li {
  57. float: left;
  58. padding-right: 7px;
  59. }
  60. }
  61. }
  62. /* ALIGNED FIELDSETS */
  63. .aligned {
  64. label {
  65. display: block;
  66. padding: 8px 10px 0 0;
  67. float: left;
  68. width: 160px;
  69. word-wrap: break-word;
  70. line-height: 1;
  71. @include for-mobile {
  72. display: block;
  73. padding: 0 0 0 2px;
  74. margin-bottom: 8px;
  75. float: none;
  76. width: auto;
  77. }
  78. }
  79. label + p {
  80. padding: 6px 0;
  81. margin-top: 0;
  82. margin-bottom: 0;
  83. margin-left: 170px;
  84. @include for-mobile {
  85. margin-left: 0;
  86. }
  87. }
  88. ul label {
  89. display: inline;
  90. float: none;
  91. width: auto;
  92. }
  93. .form-row input {
  94. margin-bottom: 0;
  95. }
  96. .vCheckboxLabel {
  97. float: none;
  98. width: auto;
  99. display: inline-block;
  100. vertical-align: -3px;
  101. padding: 0 0 5px 0;
  102. & + p.help {
  103. margin-top: -4px;
  104. }
  105. }
  106. }
  107. form .aligned {
  108. ul {
  109. margin-left: 160px;
  110. padding-left: 10px;
  111. @include for-mobile {
  112. margin-left: 0;
  113. padding-left: 0;
  114. }
  115. }
  116. ul.radiolist {
  117. display: inline-block;
  118. margin: 0;
  119. padding: 0;
  120. }
  121. p.help {
  122. clear: left;
  123. margin-top: 0;
  124. margin-left: 160px;
  125. padding-left: 10px;
  126. @include for-mobile {
  127. margin-left: 0;
  128. padding-left: 0;
  129. }
  130. }
  131. label + p.help {
  132. margin-left: 0;
  133. padding-left: 0;
  134. }
  135. p.help:last-child {
  136. margin-bottom: 0;
  137. padding-bottom: 0;
  138. }
  139. input + p.help,
  140. textarea + p.help,
  141. select + p.help {
  142. margin-left: 160px;
  143. padding-left: 10px;
  144. @include for-mobile {
  145. margin-left: 0;
  146. padding-left: 0;
  147. }
  148. }
  149. ul li {
  150. list-style: none;
  151. }
  152. table p {
  153. margin-left: 0;
  154. padding-left: 0;
  155. }
  156. }
  157. .colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField {
  158. width: 350px;
  159. @include for-mobile {
  160. width: 100%;
  161. }
  162. }
  163. .colM .aligned .vLargeTextField, .colM .aligned .vXMLLargeTextField {
  164. width: 510px;
  165. @include for-mobile {
  166. width: 100%;
  167. }
  168. }
  169. .checkbox-row p.help {
  170. margin-left: 0;
  171. padding-left: 0;
  172. }
  173. /* FIELDSETS */
  174. fieldset {
  175. .field-box {
  176. float: left;
  177. margin-right: 20px;
  178. }
  179. &.monospace textarea {
  180. font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
  181. }
  182. }
  183. /* WIDE FIELDSETS */
  184. .wide label {
  185. width: 200px;
  186. }
  187. form .wide p, form .wide input + p.help {
  188. margin-left: 200px;
  189. @include for-mobile {
  190. margin-left: 0;
  191. }
  192. }
  193. form .wide p.help {
  194. padding-left: 38px;
  195. @include for-mobile {
  196. padding-left: 0;
  197. }
  198. }
  199. .colM fieldset.wide .vLargeTextField, .colM fieldset.wide .vXMLLargeTextField {
  200. width: 450px;
  201. @include for-mobile {
  202. width: 100%;
  203. }
  204. }
  205. /* COLLAPSED FIELDSETS */
  206. //fieldset.collapsed * {
  207. // display: none;
  208. //}
  209. //
  210. //fieldset.collapsed h2, fieldset.collapsed {
  211. // display: block;
  212. //}
  213. //
  214. //fieldset.collapsed {
  215. // border: 1px solid #eee;
  216. // border-radius: 4px;
  217. // overflow: hidden;
  218. //}
  219. //
  220. //fieldset.collapsed h2 {
  221. // background: #f8f8f8;
  222. // color: #666;
  223. //}
  224. //
  225. //fieldset .collapse-toggle {
  226. // color: #fff;
  227. //}
  228. //
  229. //fieldset.collapsed .collapse-toggle {
  230. // background: transparent;
  231. // display: inline;
  232. // color: #447e9b;
  233. //}
  234. /* MONOSPACE TEXTAREAS */
  235. fieldset.monospace textarea {
  236. font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
  237. }
  238. /* SUBMIT ROW */
  239. .submit-row {
  240. margin: 20px 0;
  241. overflow: hidden;
  242. @include for-mobile {
  243. margin-bottom: 10px;
  244. }
  245. input {
  246. &, &:visited, &:hover {
  247. margin: 0 5px 5px 0;
  248. padding: 0 20px;
  249. font-size: 12px;
  250. @include for-phone {
  251. display: block;
  252. width: 100%;
  253. margin: 0 0 8px 0;
  254. }
  255. }
  256. &.default {
  257. margin: 0 8px 5px 0;
  258. @include for-phone {
  259. display: block;
  260. width: 100%;
  261. margin: 0 0 20px 0;
  262. }
  263. }
  264. }
  265. p {
  266. margin: 0.3em;
  267. }
  268. p.deletelink-box {
  269. display: block;
  270. float: right;
  271. padding: 0;
  272. margin: 0 5px 5px 0;
  273. @include for-phone {
  274. float: none;
  275. display: block;
  276. margin: 0 0 8px 0;
  277. }
  278. }
  279. a.deletelink {
  280. &, &:visited, &:hover {
  281. display: inline-block;
  282. background-color: $danger-button-background-color;
  283. color: $danger-button-text-color;
  284. border: 0;
  285. border-radius: 4px;
  286. height: 32px;
  287. line-height: 32px;
  288. outline: 0;
  289. font-size: 12px;
  290. font-weight: lighter;
  291. text-align: center;
  292. padding: 0 20px;
  293. text-transform: uppercase;
  294. box-sizing: border-box;
  295. transition: background $transitions-duration, box-shadow $transitions-duration, border $transitions-duration;
  296. @include for-phone {
  297. display: block;
  298. width: 100%;
  299. }
  300. }
  301. &:hover, &:focus {
  302. background-color: $button-hover-background-color;
  303. color: $button-hover-text-color;
  304. }
  305. &:active {
  306. background-color: $button-active-background-color;
  307. color: $button-active-text-color;
  308. }
  309. }
  310. }
  311. body.popup .submit-row {
  312. overflow: auto;
  313. }
  314. /* CUSTOM FORM FIELDS */
  315. .vSelectMultipleField {
  316. vertical-align: top;
  317. }
  318. .vCheckboxField {
  319. border: none;
  320. }
  321. .vDateField, .vTimeField {
  322. margin-right: 2px;
  323. margin-bottom: 4px;
  324. border-radius: 4px 0 0 4px !important;
  325. border-right: 0 !important;
  326. @include for-width(374px) {
  327. border-radius: 4px !important;
  328. border-right: 1px !important;
  329. }
  330. &-link {
  331. vertical-align: top;
  332. display: inline-block;
  333. @include for-width(374px) {
  334. display: none;
  335. }
  336. span {
  337. width: 32px;
  338. height: 32px;
  339. line-height: 32px !important;
  340. background-color: $button-background-color;
  341. color: $button-text-color;
  342. display: inline-block;
  343. vertical-align: middle;
  344. text-align: center;
  345. border-radius: 0 4px 4px 0;
  346. }
  347. &:hover span {
  348. background-color: $button-hover-background-color;
  349. color: $button-hover-text-color;
  350. }
  351. }
  352. }
  353. .vDateField {
  354. min-width: 6.85em;
  355. }
  356. .vTimeField {
  357. min-width: 4.7em;
  358. }
  359. .vDateField-link + .vTimeField {
  360. margin-left: 10px;
  361. }
  362. .vURLField {
  363. width: 30em;
  364. }
  365. .vLargeTextField, .vXMLLargeTextField {
  366. width: 48em;
  367. @include for-mobile {
  368. width: 100%;
  369. }
  370. }
  371. .flatpages-flatpage #id_content {
  372. height: 40.2em;
  373. }
  374. .module table .vPositiveSmallIntegerField {
  375. width: 2.2em;
  376. }
  377. .vTextField {
  378. width: 20em;
  379. @include for-phone {
  380. width: 100%;
  381. }
  382. }
  383. .vIntegerField {
  384. width: 6em;
  385. }
  386. .vBigIntegerField {
  387. width: 10em;
  388. }
  389. .vForeignKeyRawIdAdminField {
  390. width: 5em;
  391. }
  392. /* INLINES */
  393. .inline-group {
  394. padding: 0;
  395. background-color: $content-background-color;
  396. border-radius: 4px;
  397. border: 0;
  398. thead th {
  399. padding: 8px 10px;
  400. }
  401. .aligned label {
  402. width: 160px;
  403. }
  404. > fieldset.module {
  405. padding: 0;
  406. }
  407. }
  408. .inline-related {
  409. position: relative;
  410. h3 {
  411. margin: 0;
  412. background: linear-gradient(to top, $content-background-color 0%, $content-contrast-background-color 100%);
  413. font-weight: bold;
  414. color: $text-color;
  415. padding: 20px 30px 0 30px;
  416. @include for-mobile {
  417. padding: 20px 20px 0 20px;
  418. line-height: 2;
  419. }
  420. > b {
  421. margin-right: 10px;
  422. }
  423. .inline_label {
  424. display: inline-block;
  425. background: $content-contrast2-background-color;
  426. color: $content-contrast2-text-color;
  427. padding: 4px 8px;
  428. border-radius: 5px;
  429. font-size: 10px;
  430. font-weight: normal;
  431. white-space: nowrap;
  432. overflow: hidden;
  433. text-overflow: ellipsis;
  434. max-width: 100%;
  435. box-sizing: border-box;
  436. vertical-align: middle;
  437. @include for-mobile {
  438. margin-right: 10px;
  439. line-height: normal;
  440. }
  441. ~ .inlinechangelink, ~ .inlineviewlink {
  442. font-size: 18px;
  443. margin-left: 10px;
  444. vertical-align: middle;
  445. &:before {
  446. margin: 0;
  447. }
  448. }
  449. }
  450. span.delete, .inline-deletelink {
  451. float: right;
  452. margin-left: 10px;
  453. display: inline-block;
  454. background: $danger-button-background-color;
  455. color: $danger-button-text-color;
  456. padding: 4px 8px;
  457. border-radius: 5px;
  458. font-size: 10px;
  459. font-weight: normal;
  460. vertical-align: middle;
  461. white-space: nowrap;
  462. @include for-mobile {
  463. float: none;
  464. margin-left: 0;
  465. line-height: normal;
  466. }
  467. label {
  468. font-size: 10px;
  469. vertical-align: middle;
  470. &:before {
  471. font-size: 10px;
  472. color: $danger-button-text-color;
  473. vertical-align: middle;
  474. }
  475. }
  476. }
  477. }
  478. fieldset {
  479. margin: 0;
  480. background: #fff;
  481. width: 100%;
  482. &.module {
  483. background-color: inherit;
  484. box-sizing: border-box;
  485. h3 {
  486. margin: 0;
  487. padding: 2px 5px 3px 5px;
  488. font-size: 11px;
  489. text-align: left;
  490. font-weight: bold;
  491. background: #bcd;
  492. color: #fff;
  493. }
  494. }
  495. }
  496. }
  497. .inline-related.tabular fieldset.module {
  498. padding: 0;
  499. table {
  500. width: 100%;
  501. }
  502. }
  503. .inline-group {
  504. .tabular {
  505. overflow-x: auto;
  506. -webkit-overflow-scrolling: touch;
  507. table {
  508. box-shadow: none;
  509. margin: 0;
  510. }
  511. thead th, thead td {
  512. background: linear-gradient(to top, $content-background-color 0%, $content-contrast-background-color 100%);
  513. font-weight: bold;
  514. color: $text-color;
  515. a:link, a:visited {
  516. color: $text-color;
  517. }
  518. }
  519. td.original {
  520. white-space: nowrap;
  521. width: 1px;
  522. padding-right: 0;
  523. &.empty {
  524. padding: 0;
  525. }
  526. p {
  527. padding: 0;
  528. .inlinechangelink, .inlineviewlink {
  529. font-size: 18px;
  530. margin: 0;
  531. vertical-align: middle;
  532. }
  533. }
  534. }
  535. tr.add-row td {
  536. padding: 8px 10px;
  537. border-bottom: 1px solid #eee;
  538. }
  539. }
  540. ul.tools {
  541. padding: 0;
  542. margin: 0;
  543. list-style: none;
  544. li {
  545. display: inline;
  546. padding: 0 5px;
  547. }
  548. }
  549. div.add-row, .tabular tr.add-row td {
  550. padding: 16px;
  551. border: 0;
  552. }
  553. ul.tools a.add, div.add-row a, .tabular tr.add-row td a {
  554. font-size: 12px;
  555. font-weight: bold;
  556. vertical-align: middle;
  557. &:before {
  558. @include font-icon;
  559. content: $icon-add;
  560. vertical-align: middle;
  561. margin-right: 4px;
  562. }
  563. }
  564. }
  565. .empty-form {
  566. display: none;
  567. }
  568. /* RELATED FIELD ADD ONE / LOOKUP */
  569. form .related-widget-wrapper ul {
  570. display: inline-block;
  571. margin-left: 0;
  572. padding-left: 0;
  573. }
  574. .clearable-file-input input {
  575. margin-top: 0;
  576. }
  577. .changeform-navigation {
  578. display: none;
  579. float: left;
  580. margin-bottom: 20px;
  581. @include for-mobile {
  582. margin-bottom: 5px;
  583. margin-right: 10px;
  584. }
  585. &.initialized {
  586. display: block;
  587. }
  588. &-button {
  589. font-weight: bold;
  590. vertical-align: middle;
  591. }
  592. }
  593. .related-widget-wrapper-link {
  594. opacity: 0.5;
  595. transition: opacity $transitions-duration;
  596. &:link {
  597. opacity: 1;
  598. }
  599. }
  600. .add-related, .add-another, .change-related, .delete-related, .related-lookup {
  601. display: none;
  602. &.initialized {
  603. display: inline-block;
  604. }
  605. .form-row & {
  606. margin-top: 10px;
  607. }
  608. }
  609. .related-widget-wrapper-icon {
  610. &:before {
  611. @include font-icon;
  612. font-size: 20px;
  613. vertical-align: middle;
  614. }
  615. .add-related &, .add-another & {
  616. &:before {
  617. content: $icon-add3;
  618. }
  619. }
  620. .change-related & {
  621. &:before {
  622. content: $icon-edit;
  623. }
  624. }
  625. .delete-related & {
  626. &:before {
  627. content: $icon-cross;
  628. }
  629. }
  630. }
  631. .related-lookup {
  632. margin-left: 6px;
  633. &:before {
  634. @include font-icon;
  635. font-size: 20px;
  636. vertical-align: middle;
  637. content: $icon-search;
  638. }
  639. }
  640. /* TABS */
  641. .changeform-tabs {
  642. margin: 0;
  643. padding: 0 0 0 16px;
  644. border-bottom: 2px solid $background-color;
  645. background-color: $content-background-color;
  646. border-radius: 4px 4px 0 0;
  647. @include for-mobile {
  648. padding: 10px 10px 5px 10px;
  649. }
  650. &-item {
  651. display: inline-block;
  652. padding: 0;
  653. line-height: normal;
  654. a, a:hover, a:visited {
  655. display: inline-block;
  656. padding: 12px 4px;
  657. margin: 0 8px 0 0;
  658. border-bottom: 2px solid transparent;
  659. position: relative;
  660. top: 2px;
  661. color: $dim-text-color;
  662. font-weight: bold;
  663. font-size: 11px;
  664. text-transform: uppercase;
  665. transition: background-color $fast-transitions-duration,
  666. color $fast-transitions-duration,
  667. border-color $transitions-duration;
  668. @include for-mobile {
  669. margin: 0 5px 5px 0;
  670. padding: 8px 12px;
  671. top: auto;
  672. border: 0;
  673. border-radius: 5px;
  674. font-weight: normal;
  675. background: $button-background-color;
  676. color: $button-text-color;
  677. }
  678. }
  679. a:hover {
  680. color: $text-color;
  681. }
  682. &.errors {
  683. & a, & a:hover, & a:visited {
  684. border-color: $tab-error-border-color;
  685. @include for-mobile {
  686. background: $danger-button-background-color;
  687. color: $danger-button-text-color;
  688. }
  689. }
  690. }
  691. &.selected {
  692. & a, & a:hover, & a:visited {
  693. color: $text-color;
  694. border-color: $tab-selected-border-color;
  695. @include for-mobile {
  696. background: $button-hover-background-color;
  697. color: $button-hover-text-color;
  698. }
  699. }
  700. }
  701. }
  702. ~ .module, ~ .inline-group {
  703. display: none !important;
  704. border-radius: 0 0 4px 4px;
  705. &.selected {
  706. display: block !important;
  707. }
  708. }
  709. }
  710. body.change-form #content-main > form > div {
  711. > .module, > .inline-group {
  712. display: none;
  713. &.initialized {
  714. display: block;
  715. }
  716. }
  717. }