blob: 026c7b86e8434fe0c60e2819b098a01abec6695b [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;
42}
43
44#filters .label:hover {
45 /* font-size: 0; */
46 background-color: red;
47 border-color: red;
48}
49
50#filters .label:hover::before {
51 content: "Remove ";
52}
53
54#filters .label:hover::after {
55 content: "?";
56}
57
58#filters .label:not(:last-child) {
59 margin-right: 5px;
60}
61
62#filters:empty {
63 visibility: hidden;
64 opacity: 0;
65 margin-bottom: 0;
66}
67
68/* Magic filters text that won't get picked up in jquery.text */
69#filters:not(:empty)::before {
70 content: "Filters: ";
71}