source: resources/assets/sass/components/timepicker.scss@ 582789f

develop
Last change on this file since 582789f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 1.0 KB
Line 
1.wickedpicker {
2 border: none;
3 box-shadow: 0 2px 15px 0 rgba(69, 65, 78, .18);
4 width: auto;
5 border-radius: 0;
6 height: auto;
7 .wickedpicker__controls {
8 padding: 10px 15px;
9 }
10 .wickedpicker__controls__control {
11 width: 40px;
12 .wickedpicker__controls__control-up:before {
13 content: "\f077";
14 font: normal normal normal 14px/1 FontAwesome;
15 }
16 .wickedpicker__controls__control-down:after {
17 content: "\f078";
18 font: normal normal normal 14px/1 FontAwesome;
19 }
20 .hover-state {
21 color: $color-primary;
22 }
23 }
24 .wickedpicker__title {
25 display: none;
26 }
27}
28
29.clearable-picker {
30 position: relative;
31 [data-clear-picker] {
32 cursor: pointer;
33 font-size: $default-font-size + 6;
34 position: absolute;
35 right: 10px;
36 top: 50%;
37 height: 17px;
38 display: flex;
39 align-items: center;
40 justify-content: center;
41 width: 17px;
42 color: $default-text-color;
43 margin-top: -(17px / 2);
44 bottom: 0;
45 }
46}
Note: See TracBrowser for help on using the repository browser.