blob: 2119d4cb8f3c802fab0012c4d7c85409d374f577 [file] [log] [blame]
Tyler Scott3c17d5f2015-06-23 17:49:29 -06001html, body {
2 width: 100%;
3 height: 100%;
4 margin: 0;
5}
6
Tyler Scott3c17d5f2015-06-23 17:49:29 -06007.sidebar {
8 height: 100%;
9 max-height: 100%;
10 overflow: auto;
11}
Tyler Scottf08ab962015-06-30 16:31:29 -060012
Tyler Scotta1ac69d2015-07-02 17:42:03 -060013.fail {
Tyler Scottf65b7102015-06-30 18:40:14 -060014 color: red;
15}
16
Tyler Scotta1ac69d2015-07-02 17:42:03 -060017.sucess {
Tyler Scottf65b7102015-06-30 18:40:14 -060018 color: green;
Tyler Scottf08ab962015-06-30 16:31:29 -060019}
Tyler Scott7d076e22015-07-06 19:21:50 -060020
21.subnav {
22 display: none;
23 max-height: 500px;
24 overflow: auto;
25 margin-left: 15px;
26 border-left: gray 3px solid;
27}
Tyler Scotte815d3e2015-07-09 16:56:17 -060028
Tyler Scott93cae872015-07-21 14:58:23 -060029.autoComplete .list-group {
30 margin-bottom: 0;
31 border: none;
32}
33
Tyler Scottc55879f2015-07-28 14:56:37 -060034.flex {
35 display: flex;
36}
37
38.flex-row {
39 flex-display: row;
40}
41
42.vertical-fix {
43 line-height: 38px; /* Height of the button */
44 vertical-align: middle;
45}
46
47.width-fix {
48 flex: 1 auto;
49}
50
51.right-fix {
52 flex: auto;
53}
54
55.pager {
56 /* margin: 0; */
57}
58
59#searchBar {
60 display: inline-block;
61}
62
Tyler Scotte815d3e2015-07-09 16:56:17 -060063#filters {
64 margin-bottom: 10px;
65 visibility: visible;
66 opacity: 1;
67 transition: visibility 1s ease-out, opacity 1s ease-out, margin-bottom 1s ease-out;
68}
69
70#filters .label {
71 /* display: none; */
72 font-size: inherit;
73 transition: background-color 1s,
74
75 border-color 2s;
Tyler Scott087aef72015-07-14 14:11:59 -060076 cursor: pointer;
Tyler Scotte815d3e2015-07-09 16:56:17 -060077}
78
Tyler Scotta1530052015-07-24 00:13:28 -060079#filters .label::after {
80 content: " \2716";
81}
82
Tyler Scotte815d3e2015-07-09 16:56:17 -060083#filters .label:hover {
84 /* font-size: 0; */
85 background-color: red;
86 border-color: red;
87}
88
89#filters .label:hover::before {
90 content: "Remove ";
91}
92
93#filters .label:hover::after {
94 content: "?";
95}
96
97#filters .label:not(:last-child) {
98 margin-right: 5px;
99}
100
101#filters:empty {
102 visibility: hidden;
103 opacity: 0;
104 margin-bottom: 0;
105}
106
107/* Magic filters text that won't get picked up in jquery.text */
108#filters:not(:empty)::before {
109 content: "Filters: ";
110}