Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 1 | @import "components/forms"; |
| 2 | @import "components/validationForm"; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 3 | @import "components/dualListBox"; |
| 4 | @import "components/listEditorView"; |
| 5 | @import "components/toggleInput"; |
| 6 | @import "components/notifications"; |
| 7 | @import "components/inputOptions"; |
| 8 | @import "components/progressBar"; |
| 9 | @import "components/versionController"; |
| 10 | @import "components/sequenceDiagram"; |
| 11 | @import "components/navigationSideBar"; |
| 12 | @import "components/loader"; |
| 13 | @import "components/dropzone"; |
| 14 | @import "components/submitErrorResponse"; |
| 15 | @import "components/expandableInput"; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 16 | @import "components/grid"; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 17 | @import "components/activityLog"; |
| 18 | @import "components/selectActionTable"; |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 19 | @import "components/datepicker"; |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 20 | @import "components/tree"; |
| 21 | @import "components/commitModal"; |
| 22 | @import "components/userNotifications"; |
| 23 | @import "components/overlay"; |
svishnev | 091edfd | 2018-03-19 12:15:19 +0200 | [diff] [blame] | 24 | @import "components/vspDetailsVendorSelect"; |
Murali-P | 72d62fb | 2018-03-29 17:46:39 +0530 | [diff] [blame] | 25 | @import "components/vnfBrowse"; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 26 | |
| 27 | %noselect { |
| 28 | -webkit-touch-callout: none; |
| 29 | -webkit-user-select: none; |
| 30 | -moz-user-select: none; |
| 31 | -ms-user-select: none; |
| 32 | user-select: none; |
| 33 | } |
| 34 | |
| 35 | .clickable { |
| 36 | cursor: pointer; |
| 37 | } |
| 38 | |
| 39 | .no-padding { |
| 40 | padding: 0; |
| 41 | } |
| 42 | |
| 43 | .next-to-icon-label { |
| 44 | $margin: 10px; |
| 45 | margin-left: $margin; |
| 46 | &.right { |
| 47 | margin-left: 0; |
| 48 | margin-right: $margin; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | .search-wrapper { |
| 53 | display: flex; |
| 54 | .search-input-control { |
| 55 | flex: 1 1; |
| 56 | margin: 0; |
| 57 | .form-control { |
| 58 | font-style: italic; |
| 59 | } |
| 60 | } |
| 61 | .search-icon { |
| 62 | position: relative; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 63 | left: -23px; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 64 | align-self: center; |
| 65 | width: 0; |
| 66 | color: $dark-gray; |
| 67 | } |
| 68 | .filter-icon { |
| 69 | position: relative; |
| 70 | left: -20px; |
| 71 | align-self: center; |
| 72 | width: 0; |
| 73 | background-color: $white; |
| 74 | } |
| 75 | } |
| 76 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 77 | |
| 78 | .chevron::before { |
| 79 | border-style: solid; |
| 80 | border-width: 0.15em 0.15em 0 0; |
| 81 | content: ''; |
| 82 | display: inline-block; |
| 83 | height: 0.8em; |
| 84 | left: 0.15em; |
| 85 | position: relative; |
| 86 | top: 0.15em; |
| 87 | vertical-align: top; |
| 88 | width: 0.8em; |
| 89 | } |
| 90 | .chevron.right:before { |
| 91 | left: 0; |
| 92 | transform: rotate(45deg); |
| 93 | } |
| 94 | .chevron.down:before { |
| 95 | transform: rotate(135deg); |
| 96 | } |
| 97 | .chevron.left:before { |
| 98 | transform: rotate(-135deg); |
| 99 | } |
| 100 | .chevron.top:before { |
| 101 | transform: rotate(-45deg); |
| 102 | } |