blob: f36df8bb2650d68e279a1fca51a0d5f2de195a32 [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 Scotte815d3e2015-07-09 16:56:17 -060034#filters {
35 margin-bottom: 10px;
36 visibility: visible;
37 opacity: 1;
38 transition: visibility 1s ease-out, opacity 1s ease-out, margin-bottom 1s ease-out;
39}
40
41#filters .label {
42 /* display: none; */
43 font-size: inherit;
44 transition: background-color 1s,
45
46 border-color 2s;
Tyler Scott087aef72015-07-14 14:11:59 -060047 cursor: pointer;
Tyler Scotte815d3e2015-07-09 16:56:17 -060048}
49
50#filters .label:hover {
51 /* font-size: 0; */
52 background-color: red;
53 border-color: red;
54}
55
56#filters .label:hover::before {
57 content: "Remove ";
58}
59
60#filters .label:hover::after {
61 content: "?";
62}
63
64#filters .label:not(:last-child) {
65 margin-right: 5px;
66}
67
68#filters:empty {
69 visibility: hidden;
70 opacity: 0;
71 margin-bottom: 0;
72}
73
74/* Magic filters text that won't get picked up in jquery.text */
75#filters:not(:empty)::before {
76 content: "Filters: ";
77}