Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 1 | @import 'ecomp/asdc/sequencer/sequencer-common.scss'; |
| 2 | |
| 3 | .asdcs-control { |
| 4 | |
| 5 | width: 100%; |
| 6 | height: 100%; |
| 7 | min-height: $asdcsApplicationMinHeight; |
| 8 | |
| 9 | * { |
| 10 | outline: none; |
| 11 | line-height: initial; |
| 12 | text-align: initial; |
| 13 | } |
| 14 | |
| 15 | p, div, span, td, input, select, option { |
| 16 | font-size: $asdcsFontSize; |
| 17 | color: $asdcsColorOneDark; |
| 18 | padding: 0; |
| 19 | margin: 0; |
| 20 | } |
| 21 | |
| 22 | table { |
| 23 | border-collapse: initial; |
| 24 | border-spacing: initial; |
| 25 | } |
| 26 | |
| 27 | // SVG always fills its container. |
| 28 | |
| 29 | svg { |
| 30 | height:100%; |
| 31 | width: 100%; |
| 32 | } |
| 33 | |
| 34 | button { |
| 35 | |
| 36 | border-radius: 4px; |
| 37 | background-color: $asdcsColorButtonBG; |
| 38 | padding: 4px; |
| 39 | border: none; |
| 40 | color: $asdcsColorWhitish; |
| 41 | min-width: 30px; |
| 42 | min-height: 30px; |
| 43 | text-align: center; |
| 44 | vertical-align: middle; |
| 45 | |
| 46 | &:hover { |
| 47 | cursor: pointer; |
| 48 | background-color: $asdcsColorEmphasisHover; |
| 49 | color: $asdcsColorWhite; |
| 50 | @include transition(background-color 250ms ease); |
| 51 | } |
| 52 | |
| 53 | &:disabled { |
| 54 | cursor: default; |
| 55 | background-color:gray; |
| 56 | color:darkGray; |
| 57 | } |
| 58 | |
| 59 | } |
| 60 | |
| 61 | form { |
| 62 | display: none; |
| 63 | } |
| 64 | |
| 65 | ::-webkit-scrollbar { |
| 66 | width: 10px; |
| 67 | } |
| 68 | |
| 69 | ::-webkit-scrollbar-track { |
| 70 | border-radius: 0; |
| 71 | background-color: $asdcsColorOneLight; |
| 72 | } |
| 73 | |
| 74 | ::-webkit-scrollbar-thumb { |
| 75 | border-radius: 6px; |
| 76 | margin:1px; |
| 77 | background-color: $asdcsColorOne; |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | @import 'ecomp/asdc/sequencer/sequencer-controls.scss'; |
| 82 | @import 'ecomp/asdc/sequencer/sequencer-diagram.scss'; |
| 83 | @import 'ecomp/asdc/sequencer/sequencer-editor.scss'; |
| 84 | @import 'ecomp/asdc/sequencer/sequencer-dialog.scss'; |
| 85 | @import 'ecomp/asdc/sequencer/sequencer-designer.scss'; |
| 86 | @import 'ecomp/asdc/sequencer/sequencer-actions.scss'; |
| 87 | |