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