forked from back4app/parse-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPill.scss
More file actions
52 lines (48 loc) · 931 Bytes
/
Copy pathPill.scss
File metadata and controls
52 lines (48 loc) · 931 Bytes
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
/*
* Copyright (c) 2016-present, Parse, LLC
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
@import 'stylesheets/globals.scss';
.pill {
@include MonospaceFont;
display: flex;
justify-content: space-between;
align-items: center;
color: #0E69A1;
height: 20px;
line-height: 20px;
border-radius: 10px;
font-size: 11px;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: 4px;
& a {
height: 20px;
width: 20px;
background: #d6e5f2;
border-radius: 50%;
margin-left: 5px;
& svg {
transform: rotate(316deg);
}
}
}
.content {
width: 80%;
text-overflow: ellipsis;
overflow: hidden;
text-align: left;
height: 100%;
white-space: nowrap;
}
.iconAction {
cursor: pointer;
}
.disableIconAction {
cursor: initial;
}