-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.less
108 lines (104 loc) · 2 KB
/
styles.less
1
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.composer {
.composer-ctrls {
.elevation-1;
background: #fff;
font-weight: 300;
margin: 1px 0;
.btn {
padding: 10px 20px;
white-space: pre;
border-radius: 0;
background: none;
box-shadow: none;
&:hover {
.elevation-btn-raised;
background: #fff;
}
&.highlighted {
color: #fff;
background: #4880F1;
&:hover {
background: #2967E2;
}
}
&.disabled {
cursor: default;
color: #aaa !important;
background: none !important;
box-shadow: none !important;
}
}
}
.composer-recps {
.fa-hashtag, .fa-user {
color: #666;
}
input {
border: 0;
margin-left: 5px;
background: transparent;
&:focus, &:active {
outline: 0;
}
}
.recps-inputs {
padding: 10px;
border-left: 1px solid #ddd;
}
.recp {
display: inline-block;
border: 1px solid #ccc;
border-radius: 2px;
padding: 0px 5px 1px;
margin-left: 5px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.05);
a {
margin-left: 5px;
color: gray;
}
}
}
.composer-content {
.elevation-1;
font-family: @content-font;
font-weight: 300;
color: #555555;
line-height: 1.4;
background: #fff;
margin: 1px 0;
textarea {
display: block;
box-sizing: border-box;
width: 100%;
resize: vertical;
border: 0;
min-height: 140px;
padding: 10px;
margin: 0;
&:active, &:focus {
outline: 0;
}
}
& > div {
padding: 10px;
min-height: 140px;
font-weight: 300;
color: #555;
}
}
.warning {
color: rgb(178, 26, 26);
margin: 5px 0;
}
.preview {
.elevation-1;
background: #fff;
margin: 1px 0;
padding: 14px 20px 20px;
color: #555;
font-weight: 300;
font-family: @content-font;
line-height: 1.4;
word-break: break-word;
}
}