forked from boakley/brackets-robotframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeywords.css
More file actions
83 lines (70 loc) · 1.54 KB
/
keywords.css
File metadata and controls
83 lines (70 loc) · 1.54 KB
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
/* All selectors are descendents of #keywords to constrain styles to this extension */
#keywords .resizable-content {
height: 175px;
overflow-x: auto;
overflow-y: scroll;
}
#keywords table td {
line-height: 14px;
padding: 4px 10px;
}
#keywords .keyword-name { width: 30%; }
#keywords .keyword-source { width: 10%; }
#keywords .keyword-synoptis { width: 55%; }
#keywords thead th {
position: relative;
padding: 0;
}
#keywords thead th:before {
content: '.';
position: absolute;
top: 50%;
right: 5px;
width: 0;
height: 0;
overflow: hidden;
margin-top: -3px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
}
#keywords thead th.sort-ascending:before {
border-top: 6px solid;
}
#keywords thead th.sort-descending:before {
border-bottom: 6px solid;
}
#keywords thead a {
position: relative;
display: block;
color: inherit;
padding: 4px 10px;
text-decoration: none;
cursor: pointer;
-webkit-transition: background 200ms ease-out;
}
#keywords thead a:hover {
background: rgba(0, 0, 0, 0.08);
}
#keywords .toolbar {
display: block;
padding-right: 28px;
}
#keywords .toolbar #spinner {
padding-top: 2px;
padding-bottom: 2px;
}
#keywords #rfhub-notice {
padding-left: 20px;
padding-top: 2px;
}
#keywords .toolbar #status {
padding-left: 20px;
padding-top: 2px;
padding-bottom: 2px;
}
#keywords .toolbar .filter {
float: right;
margin: -2px 10px;
padding-top: 2px;
padding-bottom: 2px;
}