blob: 2484a73e8a88a06b95b8632a64a09345b7c51286 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001.expandable-input-top {
2 display: flex;
3 height: 22px;
AviZi280f8012017-06-09 02:39:56 +03004 .expandable-input-wrapper {
5 display: flex;
AviZi280f8012017-06-09 02:39:56 +03006 &.closed {
az2497644017c2017-08-10 17:49:40 +03007 .svg-icon
8 {
9 &.__search {
10 height: 17px;
11 width: 17px;
AviZi280f8012017-06-09 02:39:56 +030012 transition: fill 0.5s ease-in;
az2497644017c2017-08-10 17:49:40 +030013 fill: $blue;
14 cursor: pointer;
15 &:hover {
16 transition: fill 0.5s ease-in;
17 fill: $dark-blue;
18 }
AviZi280f8012017-06-09 02:39:56 +030019 }
20 }
Michael Landoefa037d2017-02-19 12:57:33 +020021 }
AviZi280f8012017-06-09 02:39:56 +030022 &.opened {
23 .svg-icon-wrapper {
24 margin-left: 3px;
25 }
az2497644017c2017-08-10 17:49:40 +030026 .svg-icon {
27 &.__search {
28 height: 17px;
29 width: 17px;
30 fill: $dark-blue;
31 }
AviZi280f8012017-06-09 02:39:56 +030032 }
az2497644017c2017-08-10 17:49:40 +030033 .svg-icon {
34 &.__close {
35 margin-left: 7px;
36 opacity: 0.6;
37 fill: $dark-gray;
38 &:hover {
39 opacity: 1;
40 }
AviZi280f8012017-06-09 02:39:56 +030041 }
42 }
43 }
44 .expandable-input-control {
45 .form-control {
46 border: none;
47 background-color: transparent;
48 border-radius: 0;
49 border-bottom: 1px solid $gray;
50 height: 22px;
51 padding: 0 5px;
52 }
53 margin: 0;
54 }
Michael Landoefa037d2017-02-19 12:57:33 +020055 }
56}