summaryrefslogtreecommitdiff
path: root/htroot/env/bootstrap-base.css
blob: a2a5d1a0415e0f9001721e40ff9bb5761ff6c1f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
 * Base bootstrap structure, this should become part of base.css later
 */

.navbar {
  padding-top: 5px;
  min-height: 60px;
}

/* Move down content because we have a fixed navbar that is 60px tall */
body {
  padding-top: 70px;
}


/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
  border: 0;
}

/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
  display: none;
  margin-top: -1px;
  margin-left: 8px;
}
@media (min-width: 768px) {
  .sidebar {
    width: 15%;
    position: fixed;
    top: 61px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  }
}

/* Sidebar navigation */
.nav-sidebar {
  margin-right: -11px; /* 20px padding + 1px border */
  margin-bottom: 10px;
  margin-left: -10px;
}
.nav-sidebar > li > a {
  padding-right: 10px;
  padding-left: 18px;
  padding-top: 4px;
  padding-bottom: 3px;
}
.nav-sidebar > li {
  padding: 0px;
  margin-left: 6px;
  margin-right: 6px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #fff;
  background-color: #428bca;
}
.nav-sidebar h3 {
  padding-right: 10px;
  padding-left: 16px;
  padding-top: 4px;
  padding-bottom: 1px;
  margin: 0px;
  font-size: 14px;
}
.navbar-header a:link, .navbar-collapse a:link {
  text-decoration:none;
}
.navbar-right {
  padding-right:20px;
  font-size: 14px;
}
legend {
  width: auto;
  margin: 0px;
  line-height: 16px;
  border: 0;
}
label {
  font-weight:normal;
  padding-left:6px;
}
ul.nav li.dropdown:hover ul.dropdown-menu{
    display: block;
    margin-top:0px
}

/*
 * typeahead
 * sets the following classes: 
 * twitter-typeahead, tt-dropdown-menu, tt-dataset-%CLASS%, tt-suggestions, tt-suggestion
 * tt-hint, tt-input, tt-cursor
 */

.tt-dropdown-menu {
  width: 396px;
  margin-top: 4px;
  padding: 4px 0;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
}

.tt-suggestion {
  padding: 3px 10px;
  font-size: 16px;
}

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #428bca;
}

.tt-suggestion p {
  margin: 0;
}
.popover {
    z-index: 1600;
}
.col-md-9 {
    overflow-x: hidden;
	margin-left: 15%;
	width: 85%;
}