Marius Cramer
2015-01-08 680c56f95b14b1b33e0218f1eb62a58f9f491483
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
@import "colors"
@import "mixins"
 
html, body
  -webkit-tap-highlight-color: $color-black
 
body
  background: $color-background-blueish
  color: $color-font-main
 
.green
  color: $color-green
 
.form-control:focus
  border-color: $color-input-focus
 
.formbutton-default
  @include background-gradient
  border-bottom-color: $color-grey
  color: $color-font-main
 
  &:hover, &.active
    border-bottom-color: $color-grey-hover
 
.formbutton-success
  @include background-gradient-green
  border-color: $color-green-border
  border-bottom-color: $color-green-border
  color: $color-white
 
  &:hover, &.active
    border-bottom-color: $color-green-border-hover
    color: $color-white
 
#searchform
  button
    @include background-gradient
 
#logout-button
  background: $color-red
  border-bottom-color: $color-red-dark
 
  &:hover
    background: $color-red-hover
    border-bottom-color: $color-red-dark-hover
 
#main-navigation
  a
    @include background-gradient
    border-bottom-color: $color-grey
 
    &:hover, &.active
      border-bottom-color: $color-grey-hover
      color: $color-red
 
  .icon
    text-shadow: 1px 1px 1px $color-white
 
#sidebar
  border-color: $color-notification-info-border
  background: $color-white
 
  header
    background: $color-notification-info-background
    color: $color-notification-info-font
 
  li
    border-top-color: $color-notification-info-border
 
  a
    color: inherit
 
    &:hover
      color: $color-notification-info-link-hover
 
.page-header
  border-color: $color-grey
 
 
.alert-notification
  background: $color-notification-info-background
  border-color: $color-notification-info-border
  color: $color-notification-info-font
 
  a
    color: $color-notification-info-link
 
    &:hover
      color: $color-notification-info-link-hover
 
.alert-danger
  background: $color-notification-danger-background
  border-color: $color-notification-danger-border
  color: $color-notification-danger-font
 
.modules
  li
    background: $color-grey-bg
    border-color: $color-grey-border
    box-shadow: inset 1px 3px 8px -5px $color-black-transparent
 
  .button
    @include background-gradient
    border-bottom-color: $color-grey
 
    &:hover, &.active
      border-bottom-color: $color-grey-hover
 
  a
    color: inherit
 
.table-wrapper
  background: $color-white
  border-color: $color-grey-border
 
.table
  caption
    border-bottom-color: $color-grey-border
 
  tbody
    tr
      border-top-color: $color-grey-border
 
      &:nth-child(odd)
        background: $color-background-blueish
 
      &:nth-child(even)
        background: $color-white
 
      &:hover
        background: $color-table-hover
 
.tfooter
  background: linear-gradient(to bottom, $color-gradient-grey-start, $color-gradient-grey-stop)
  border-top-color: $color-grey-border
 
.content-tab-wrapper
  background: $color-white
  border-color: $color-grey-border
 
  .nav-tabs
    background: $color-grey-light
    box-shadow: inset -1px -2px 6px -5px $color-black-transparent
 
    > li > a
      border-right-color: $color-grey-border !important
      color: inherit
 
      &:hover
        background: darken($color-grey-light, 5%)
 
    .active a
      background: $color-white !important
 
thead.dark
  background: linear-gradient(to bottom, $color-thead-begin, $color-thead-end) !important
  color: $color-white
 
#footer
  border-top-color: $color-grey-border
 
.pushy
  background: $color-background-blueish
 
  ul
    &.subnavi li
      a
        &:hover
          background: none
 
  a
    &:hover, &.active
      background: $color-background-blueish
      color: inherit
 
@media screen and (max-width: 860px)
  #main-navigation
    a
      border-right-color: $color-grey-border
      border-bottom-color: $color-grey-border
 
      &.active
        border-right-color: $color-grey-border
        border-bottom-color: $color-grey-border
 
      &:hover
        border-bottom-color: $color-grey-border