module.css 2.51 KB
Newer Older
1
.header--application {
2
  margin: -20px 0 20px 0;
3 4
  font-size: 15px;
}
5 6 7 8 9 10 11 12
.header--application .navbar-inner {
  background-color: #666;
  background-image: none;
  border-radius: 0;
  filter: none;
  border: none;
  border-bottom: 1px solid #34302D;
  box-shadow: none;
13
}
14

15 16 17
.header--application .nav-tabs {
  border: 0;
}
18 19 20

.header--application .nav > li > a  {
  color: #c7c7c7;
21
}
22 23 24

.header--application .nav > li > a:hover,
.header--application .nav > li > a:focus,
25 26
.header--application .nav-tabs > li > a:hover,
.header--application .nav-tabs > li > a:focus {
27 28 29 30 31 32
  color: #f1f1f1;
}

.header--application .nav-tabs > li > a,
.header--application .nav-tabs > li > a:hover,
.header--application .nav-tabs > li > a:focus  {
33
  background-color: #666;
34 35
  border: 0;
  padding: 9px 13px 8px 13px;
36
  border-bottom: 1px solid transparent;
37 38 39 40 41 42 43 44 45 46 47 48 49
}
.header--application .nav-tabs > .active > a,
.header--application .nav-tabs > .active > a:hover,
.header--application .nav-tabs > .active > a:focus {
  color: #333333;
  background-color: #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  border-left: 1px solid #34302D;
  border-right: 1px solid #34302D;
  border-top: 4px solid #6db33f;
  padding: 5px 12px 8px 12px;
}
.header--application .application--title {
50
  color: #f1f1f1;
51 52
  font-size: 24px;
  line-height: 24px;
53 54
  margin: 20px 20px 0 0;
  display: inline-block;
55
}
56 57 58
.application--urls {
  list-style: none;
  text-align: right;
59
  font-size: 14px;
60
  color: #888;
61 62 63
  margin: 5px 0 5px 0;
  display: block;
  float: right;
64
}
65
.application--urls > li > a {
66
  color: #f1f1f1;
67
}
68 69
.application--urls > li > a:hover,
.application--urls > li > a:focus {
70
  color: #c7c7c7;
71
  text-decoration: none;
72 73
}

74 75 76 77
.application-list {
  background-color: #f9f9f9;
}

78 79 80 81 82 83 84 85 86
table.application-list {
  table-layout: fixed;
  width: 100%;
}
.application-list td.scroll {
  overflow-x: auto;
  max-width: 400px;
}

87 88 89 90 91 92 93 94 95 96 97 98 99 100
.table .group-column {
  border-right: 1px solid #dddddd;
  color: #999999;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.table .group-column:hover {
  background-color: #c7c7c7;
  color: #f9f9f9;
}


101
/* ---------- */
102 103 104 105 106 107 108 109 110

.sortable {
  cursor: pointer;
}
.sorted-ascending,
.sorted-descending {
  color: #6db33f;
}
.sorted-ascending::after {
111
  content: " \25b2";
112 113
}
.sorted-descending::after {
114
  content: " \25bc";
115 116 117 118 119
}

/* ---------- */

.status-UP {
120 121
  color: #00AA00;
  font-weight: bold;
122 123
}
.status-OFFLINE {
124 125
  color: #000000;
  font-weight: bold;
126 127 128
}
.status-DOWN,
.status-OUT_OF_SERVICE {
129 130
  color: #DD0000;
  font-weight: bold;
131 132
}
.status-UNKNOWN {
133 134
  font-weight: bold;
  color: #FF8800;
135
}