123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- // Styles for the rulebox module
- .rulebox {
- border: 1px solid $grey-color-light;
- padding: 20px;
- margin: 20px 0 30px 0;
- .prompt,
- .module-type-header {
- color: $grey-color-dark;
- font-family: $header-font-family;
- font-weight: bold;
- }
- .module-questions {
- color: $grey-color;
- font-size: .8em;
- }
- .module-type {
- margin-bottom: $spacing-unit/2;
- }
- .prompt,
- .delete-module,
- .rulebuilder_modules,
- .linkbox_input,
- .metadata_input {
- display: none;
- }
-
- .editable[contenteditable="true"] { /* active editable fields */
- border-bottom: 1px dashed $grey-color-dark;
- }
-
- .editable[contenteditable="false"] { /* inactive editable fields */
- border: none;
- }
-
- // TODO: module display is set within the spreadsheet
- .rulebuilder_input .module .delete-module {
- display: none !important;
- }
- .rulebuilder {}
- .rulebuilder_input {
- overflow: hidden;
- margin: 0 0 $spacing-unit;
- text-align: left;
- min-height: 1.5em;
- .prompt {
- color: $text-color;
- }
- .module .module-info {
- display: none;
- }
- }
- .rulebuilder_list {}
- .rulebuilder_modules {
- .module .delete-module {
- display: none;
- }
- }
- .metadata_input,
- .metadata_display {
- border: 1px solid $grey-color-light;
- background-color: white;
- margin: $spacing-unit 0 15px 0;
- padding: 10px;
- }
-
- .metadata_display {
- border-radius: 6px;
- text-align: center;
- }
- .metadata_input {
- input {
- margin-bottom: $spacing-unit / 2;
- }
- }
- &.rulebox-preview {
- // this class is toggled by toggleEditMode() in rule-scrips.html
- // when preview/customize button is pressed
-
- }
- &.rulebox-edit {
- // this class is toggled by toggleEditMode() in rule-scrips.html
- // when preview/customize button is pressed
- .prompt,
- .delete-module,
- .rulebuilder_modules,
- .metadata_input {
- display: block;
- }
- .linkbox_input {
- display: inline;
- }
- .metadata_display {
- display: none;
- }
- .prompt .module {
- margin: 0;
- &:hover,
- &:active {
- border-color: inherit;
- cursor: default;
- }
- }
- .module:hover {
- cursor: grab;
- border-color: $grey-color-dark;
- .module-logo {
- cursor: pointer;
- }
- }
- .module:active {
- cursor: grabbing;
- border-color: $brand-yellow;
- }
- .rulebuilder_input .module .delete-module {
- display: inline !important;
- }
- .module.module-custom {
- input {
- border-width: 0 0 1px 0;
- border-bottom: 1px dashed $grey-color-dark;
- font-family: inherit;
- font-size: inherit;
- padding: 5px;
- }
- }
- .rulebuilder {}
- .rulebuilder_input {
- &.drag-target {
- background-color: $brand-yellow;
- border-style: solid;
- }
- border: 4px dashed $brand-yellow;
- color: $text-color;
- padding: 10px 10px 10px 10px;
- }
- }
- }
|