Blame view
flashy.css
1.55 KB
dd71074e6
|
1 |
.angucomplete-dropdown { |
bbba33088
|
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
border-color: #ececec; border-width: 1px; border-style: solid; border-radius: 2px; /*width: 250px;*/ padding: 6px; cursor: pointer; z-index: 9999; position: absolute; /*top: 32px; left: 0px; */ margin-top: -6px; background-color: #ffffff; } .angucomplete-description { font-size: 14px; } .angucomplete-row { padding: 5px; color: #000000; margin-bottom: 4px; clear: both; |
1625466a8
|
27 28 29 30 |
} .angucomplete-selected-row { background-color:#aaaaff; |
34a342819
|
31 |
} |
dd71074e6
|
32 33 34 35 |
.container { position: relative; width: 600px; height: 80px; |
3920fd878
|
36 |
} |
34a342819
|
37 |
.modal.bottom-sheet { |
2f0ac6fc4
|
38 39 40 |
width: 40%; margin-left: auto; margin-right: auto; |
34a342819
|
41 |
} |
7c4ff6b2a
|
42 |
|
629f7a4ba
|
43 |
<<<<<<< HEAD |
7c4ff6b2a
|
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
/* label color */ .input-field label { color: #673ab7; } /* label focus color */ .input-field input[type]:focus + label { color: #b388ff; } /* label underline focus color */ .input-field input[type]:focus { border-bottom: 1px solid #b388ff; box-shadow: 0 1px 0 0 #b388ff; } /* valid color */ .input-field input[type].valid { border-bottom: 1px solid #673ab7; box-shadow: 0 1px 0 0 #673ab7; } /* invalid color */ .input-field input[type].invalid { border-bottom: 1px solid #673ab7; box-shadow: 0 1px 0 0 #673ab7; } /* icon prefix focus color */ .input-field .prefix.active { color: #b388ff; } /* label focus color */ .input-field textarea[type]:focus + label { color: #b388ff; } /* label underline focus color */ .input-field textarea[type]:focus { border-bottom: 1px solid #b388ff; box-shadow: 0 1px 0 0 #b388ff; } |
bac1b3d8d
|
87 88 89 90 |
body { background-color: #3A263D; } |