Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 7824720d

Von Cem Aydin vor mehr als 3 Jahren hinzugefügt

  • ID 7824720d5c9b8cf7ab21a481d6bca6cf23e66868
  • Vorgänger 13d82fb8
  • Nachfolger 6cb1c463

Neues Design Anpassung: #386 Farben Überschriften und Buttons angepasst

Da bei einer Änderung der Brand Farbe oftmals ein unbrauchbarer
Hintergrund-Ton entstand, habe ich diese nun entkoppelt. Dazu:

- brand durchgehend in base umbenannt
- neuen Abschnitt brand eingefügt (css/less/variables_color_style.less)
- diesen für H1 Header und Buttons verwendet
- less/css neu kompiliert

Unterschiede anzeigen:

css/less/_developing_styles.less
37 37
  --gray-verylight:     @gray-verylight;
38 38
  --gray-superlight:    @gray-superlight; // White
39 39

  
40
  --color-standard:     @brand-standard;
41
  --color-superlight:   @brand-superlight;
42
  --color-verylight:    @brand-verylight;
43
  --color-lighter:      @brand-lighter;
44
  --color-light:        @brand-light;
45
  --color-dark:         @brand-dark;
46
  --color-darker:       @brand-darker;
47
  --color-verydark:     @brand-verydark;
48
  --color-superdark:    @brand-superdark;
40
  --color-standard:     @base-standard;
41
  --color-superlight:   @base-superlight;
42
  --color-verylight:    @base-verylight;
43
  --color-lighter:      @base-lighter;
44
  --color-light:        @base-light;
45
  --color-dark:         @base-dark;
46
  --color-darker:       @base-darker;
47
  --color-verydark:     @base-verydark;
48
  --color-superdark:    @base-superdark;
49 49

  
50 50
//  --msg-ok-strong:        @color-green-strong; 
51 51
//  --msg-ok-light:         @color-green-light; 
......
75 75
  
76 76
  
77 77
  
78
  --spin_60 : spin(@brand-standard,  60);
79
  --spin_120: spin(@brand-standard, 120);
80
  --spin_180: spin(@brand-standard, 180);
81
  --spin_240: spin(@brand-standard, 240);
78
  --spin_60 : spin(@base-standard,  60);
79
  --spin_120: spin(@base-standard, 120);
80
  --spin_180: spin(@base-standard, 180);
81
  --spin_240: spin(@base-standard, 240);
82 82
  
83 83
  --style-ocean:            @style_ocean;
84 84
  --style-light_blue:       @style_light_blue;
css/less/control_panels.less
215 215

  
216 216
  // PENDENT: ggf. anpassen an Controlpanel-Farbtoene
217 217
  .tbl-horizontal {
218
    //th{ color: @brand-superdark ; }
218
    //th{ color: @base-superdark ; }
219 219
  }
220 220

  
221 221
}
css/less/developing.less
24 24
body.developing{
25 25

  
26 26
  &>header{
27
     background-color: @brand-h1-bg;
27
     background-color: @base-h1-bg;
28 28
     display: block;
29 29
     overflow: hidden;
30 30
    h1{
31 31
      float: left;
32
      color: @brand-h1-color ;
32
      color: @base-h1-color ;
33 33
      padding: 1.0em;
34 34
    }
35 35
    nav{
css/less/developing_demo.less
51 51
.rainbow-yellow { background-color: @rainbow-yellow }
52 52

  
53 53
// --------------
54
// Brand colors
54
// Base colors
55 55

  
56 56
// Text (Label & data)
57
.brand-primary { background-color: @brand-primary }
58
.brand-label { background-color: @brand-label }
59
.brand-label-bg { background-color: @brand-label-bg }
57
.base-primary { background-color: @base-primary }
58
.base-label { background-color: @base-label }
59
.base-label-bg { background-color: @base-label-bg }
60 60

  
61 61
// Messages & info types
62
.brand-info { background-color: @brand-info }
63
.brand-info-bg { background-color: @brand-info-bg }
62
.base-info { background-color: @base-info }
63
.base-info-bg { background-color: @base-info-bg }
64 64

  
65
.brand-ok { background-color: @brand-ok }
66
.brand-ok-bg { background-color: @brand-ok-bg }
65
.base-ok { background-color: @base-ok }
66
.base-ok-bg { background-color: @base-ok-bg }
67 67

  
68
.brand-warning { background-color: @brand-warning }
69
.brand-warning-bg { background-color: @brand-warning-bg }
68
.base-warning { background-color: @base-warning }
69
.base-warning-bg { background-color: @base-warning-bg }
70 70

  
71
.brand-error { background-color: @brand-error }
72
.brand-error-bg { background-color: @brand-error-bg }
71
.base-error { background-color: @base-error }
72
.base-error-bg { background-color: @base-error-bg }
73 73

  
74 74
// Positive & negative colors
75
.brand-positive { background-color: @brand-positive }
76
.brand-positive-bg { background-color: @brand-positive-bg }
77
.brand-negative { background-color: @brand-negative }
78
.brand-negative-bg { background-color: @brand-negative-bg }
75
.base-positive { background-color: @base-positive }
76
.base-positive-bg { background-color: @base-positive-bg }
77
.base-negative { background-color: @base-negative }
78
.base-negative-bg { background-color: @base-negative-bg }
79 79

  
80 80

  
81 81
// Buttons
......
182 182

  
183 183

  
184 184
// -----------------------
185
// BRAND COLORS
185
// BASE COLORS
186 186
// -----------------------
187
.brand-superdark:    @gray-superdark ; // Black
188
.brand-verydark:    @gray-verydark ;
189
.brand-darker:      @gray-darker ;
190
.brand-dark:        @gray-dark ;
187
.base-superdark:    @gray-superdark ; // Black
188
.base-verydark:    @gray-verydark ;
189
.base-darker:      @gray-darker ;
190
.base-dark:        @gray-dark ;
191 191

  
192
.brand-standard:    @gray-standard ;
192
.base-standard:    @gray-standard ;
193 193

  
194
.brand-light:        @gray-light ;
195
.brand-lighter:      @gray-lighter ;
196
.brand-verylight:    @gray-verylight ;
197
.brand-superlight:  @gray-superlight ; // White
194
.base-light:        @gray-light ;
195
.base-lighter:      @gray-lighter ;
196
.base-verylight:    @gray-verylight ;
197
.base-superlight:  @gray-superlight ; // White
198 198

  
199 199

  
200 200

  
css/less/forms.less
168 168
    vertical-align:     top;
169 169
    display:             inline-block;
170 170
    width:               88% ;
171
    color:               @brand-data-label-color ;
171
    color:               @base-data-label-color ;
172 172

  
173 173
    &:link,
174 174
    &:visited {
css/less/jquery-ui.less
287 287
  .ui-menu-item {
288 288
    a {
289 289
      &:hover{
290
         background-color: @brand-dark;
290
         background-color: @base-dark;
291 291
         color: #fff ;
292 292
      }
293 293
    }
......
543 543
      }
544 544
      a.ui-state-hover{
545 545
        color: #ffffff ;
546
        background-color: @brand-darker;
546
        background-color: @base-darker;
547 547
      }
548 548
    }
549 549

  
......
551 551
      // current date
552 552
      .ui-state-highlight{
553 553
        color: #ffffff ;
554
        background-color: @brand-darker;
554
        background-color: @base-darker;
555 555
        border: 1px @gray-standard solid
556 556
      }
557 557
      // Days
558 558
      td a {
559
        &.ui-state-default { color: @brand-dark; }
559
        &.ui-state-default { color: @base-dark; }
560 560
        &.ui-state-hover {
561 561
          color: #ffffff ;
562 562
          background-color: #000000;
563 563
          border: #000000 ;
564 564
        }
565 565
        &.ui-state-active {
566
          border: 1px solid @brand-dark;
567
          background-color: @brand-dark;
568
          color: @brand-verylight;
566
          border: 1px solid @base-dark;
567
          background-color: @base-dark;
568
          color: @base-verylight;
569 569
        }
570 570
      } // /td
571 571
    }    // /.ui-datepicker-calendar
......
669 669
  .ui-dialog-titlebar {
670 670
    padding:          0.4em 1.0em;
671 671
    border:           none;
672
    background-color: @brand-h1-bg !important;
673
    color:            @brand-h1-color !important;
672
    background-color: @base-h1-bg !important;
673
    color:            @base-h1-color !important;
674 674
    font-weight:      normal;
675 675
    position:         relative;
676 676
    text-align:       left;
......
775 775
    margin: 0;
776 776
    padding: 0;
777 777
    width: 100%;
778
    background-color: @brand-lighter;
778
    background-color: @base-lighter;
779 779
    border-bottom: 1px @_menu_border_color solid ;
780 780

  
781 781
    a {
......
1377 1377
  //background: #f6f6f6 url(ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x;
1378 1378
  background: none ;
1379 1379
  font-weight: bold;
1380
  color: @brand-darker;
1380
  color: @base-darker;
1381 1381
  a,
1382 1382
  a:link,
1383 1383
  a:visited {
css/less/jquery-ui_overrides.less
384 384
  // Days
385 385
  td a {
386 386
    &.ui-state-default {
387
      color: @brand-dark;
387
      color: @base-dark;
388 388
    }
389 389
    &.ui-state-hover {
390 390
      color: #ffffff ;
......
392 392
      border: #000000 ;
393 393
    }
394 394
    &.ui-state-active {
395
      border: 1px solid @brand-dark;
396
      background-color: @brand-dark;
397
      color: @brand-verylight;
395
      border: 1px solid @base-dark;
396
      background-color: @base-dark;
397
      color: @base-verylight;
398 398
    }
399 399

  
400 400
  }
css/less/lists.less
121 121
    font-weight:   normal;
122 122
    font-size:     @font-size-medium;
123 123
    font-family:   "Helvetica Neue", Helvetica, Arial; // PENDENT: in Variablen verlegen
124
    color:         @brand-dark ;
124
    color:         @base-dark ;
125 125
  }
126 126
  // List Elements
127 127
  & > p,
css/less/main.less
93 93
  z-index:            @zindex-h1; //hps:12
94 94
  top:                60px;
95 95
  width:              100%;
96
  color:              @brand-h1-color ;
97
  background-color:   @brand-h1-bg;
96
  color:              @base-h1-color ;
97
  background-color:   @base-h1-bg;
98 98
  padding:            @h1-padding;
99
  border-top:         @brand-h1-border-top;
99
  border-top:         @base-h1-border-top;
100 100
}
101 101
#content .wrapper h1{
102 102
  color:              @headings-color;
......
104 104
  margin:             @margin-from-wrapper ;
105 105
}
106 106
body > h1{
107
  color:              @brand-h1-color ;
108
  background-color:   @brand-h1-bg ;
107
  color:              @base-h1-color ;
108
  background-color:   @base-h1-bg ;
109 109
  padding:            @h1-padding;
110 110
}
111 111

  
......
372 372
// Labels & Values (SPAN)
373 373
// -----------------------
374 374
span.label{
375
  //color: @brand-data-label-color ;
375
  //color: @base-data-label-color ;
376 376
  font-size: @font-size-smaller ;
377 377
  font-style: normal ;
378 378
  //margin: 0 0.3em 0 0 ; // PENDENT: gehoert nicht hierher
......
398 398
.accent{
399 399
  div.label{
400 400
    float: left ;
401
    //color: @brand-data-label-color ;
401
    //color: @base-data-label-color ;
402 402
    font-size: 80% ;
403 403
    //&.wi-mediumsmall{ width: 13.6em; } // PENDENT!
404 404
    padding-top: 0.8em ;
......
590 590
}
591 591
// Negative Values
592 592
.minus,
593
.plus0 { color:      @brand-negative !important; }
593
.plus0 { color:      @base-negative !important; }
594 594
// Positive Values
595 595
.plus,
596
.plus1 { color:     @brand-positive !important; }
596
.plus1 { color:     @base-positive !important; }
597 597

  
598 598
// unbalanced Ledger
599 599
// PENDENT: wo eingesetzt?
600 600
span.unbalanced_ledger {
601
  background-color: @brand-warning-bg;
601
  background-color: @base-warning-bg;
602 602
}
603 603

  
604 604

  
css/less/menu.less
532 532
    .DHTMLSuite_menuItem_top_over,
533 533
    .DHTMLSuite_menuItem_top_click {
534 534
      color:             @color-red-strong ;
535
      background-color: @brand-superlight ;
535
      background-color: @base-superlight ;
536 536
      .DHTMLSuite_menuItem_top_arrowShowSub{
537 537
        border:         none !important ;
538 538
      }
......
553 553
  padding:         0.1em 0 0.4em 0.4em !important;
554 554
  margin:         11px 0 0 0;
555 555
  border-top:     none;
556
  border-right:   1px solid @brand-lighter;
557
  border-bottom:   1px solid @brand-lighter;
558
  border-left:     1px solid @brand-lighter;
556
  border-right:   1px solid @base-lighter;
557
  border-bottom:   1px solid @base-lighter;
558
  border-left:     1px solid @base-lighter;
559 559

  
560 560
  // -----------------------
561 561
  // Menu-Item Sub (2nd Level)
......
586 586
  .DHTMLSuite_menuItem_sub_over,
587 587
  .DHTMLSuite_menuItem_sub_active {
588 588
    color: @color-orange-strong ;
589
    background-color: @brand-superlight;
589
    background-color: @base-superlight;
590 590
  }
591 591

  
592 592
} // /.DHTMLSuite_menuBar_sub
css/less/requirement_spec.less
116 116
              font-size:       90% ;
117 117
              font-weight:     bold;
118 118
              letter-spacing: 0.1em;
119
              color:           @brand-dark;
119
              color:           @base-dark;
120 120
            }
121 121
          } // /h3
122 122

  
......
463 463
    // special rows
464 464
    &.section th {
465 465
      line-height: 2.2em ;
466
      //background-color: @brand-standard;
467
      color: @brand-superdark ;
466
      //background-color: @base-standard;
467
      color: @base-superdark ;
468 468
      b {
469 469
        font-size: 116% ;
470 470
      }
......
473 473
      td, th {
474 474
        font-weight:      bold ;
475 475
        background-color: @gray-standard; // PENDENT: ZEBRA
476
        border-top:       1px @brand-superdark solid ;
477
        border-bottom:    1px @brand-superdark solid ;
476
        border-top:       1px @base-superdark solid ;
477
        border-bottom:    1px @base-superdark solid ;
478 478
        text-align:       right;
479 479
      }
480 480
    }
css/less/scaffolding.less
35 35

  
36 36
body {
37 37
  margin:           0 ;
38
  color:            @brand-primary ;
38
  color:            @base-primary ;
39 39
  font-family:      @font-family-sans-serif;
40 40
  font-size:        @font-size-smaller ;
41 41

  
css/less/tables.less
574 574
//      padding: 0.5em 0.4em 0.5em 0.3em ;
575 575
//      font-weight: normal ;
576 576
//      font-size: @h3-size ;
577
//      color: @brand-heading-color ;
577
//      color: @base-heading-color ;
578 578
      .mx-h3-caption ;
579 579
      border: none ;
580 580
    }
......
721 721
        //padding-left:     0.8em !important;
722 722
      }
723 723
      tr:hover {            background-color:   @t-row-zebra-bg-hover ; }
724
      tr.listrow_error {    background-color:   @brand-error-bg !important ; }
724
      tr.listrow_error {    background-color:   @base-error-bg !important ; }
725 725

  
726 726
      td, th {
727 727
        color:              @table-list-zebra-text-color ;
......
1074 1074
    }
1075 1075
    &:link,
1076 1076
    &:visited{
1077
      color: @brand-light ;
1077
      color: @base-light ;
1078 1078
    }
1079 1079
  }
1080 1080
}
css/less/variables.less
12 12
// CONTENTS:
13 13
// - COLORS
14 14
//   - Greys
15
//   - Branding
15
//   - Base
16 16
//   - Divers Color Specifications
17 17
// - SCAFFOLDING
18 18
//   - Body/Content Background color, Text color
......
67 67

  
68 68

  
69 69
// --------------------------------------
70
// COLORS (GREYs, BRAND COLORS & OTHERS)
70
// COLORS (GREYs, BASE COLORS & OTHERS)
71 71
// --------------------------------------
72 72
// Base Colors see variables_color[*-9].less
73 73
// Include the preferred color scheme in style.less before including this less file
......
76 76
// General text color (label & data)
77 77
// -----------------------
78 78
// Standard text
79
@brand-primary:         @brand-text-color;
80
@brand-label:           @brand-data-label-color;
81
@brand-label-bg:        @brand-lighter;
79
@base-primary:         @base-text-color;
80
@base-label:           @base-data-label-color;
81
@base-label-bg:        @base-lighter;
82 82

  
83 83
// -----------------------
84 84
// MESSAGES & INFO TYPES
85 85
// -----------------------
86 86
// color definitions in variables_color_[*-9].less
87
@brand-ok:              @color-green-strong;
88
@brand-ok-bg:           @color-green-light;
87
@base-ok:              @color-green-strong;
88
@base-ok-bg:           @color-green-light;
89 89

  
90
@brand-error:           @color-red-strong;
91
@brand-error-bg:        @color-red-light;
90
@base-error:           @color-red-strong;
91
@base-error-bg:        @color-red-light;
92 92

  
93
@brand-info:            @color-blue-strong;
94
@brand-info-bg:         @color-blue-light;
93
@base-info:            @color-blue-strong;
94
@base-info-bg:         @color-blue-light;
95 95

  
96
@brand-warning:         @color-orange-strong;
97
@brand-warning-bg:      @color-orange-light;
96
@base-warning:         @color-orange-strong;
97
@base-warning-bg:      @color-orange-light;
98 98

  
99 99
// Positive & negative colors
100
@brand-positive:        @color-green-strong;
101
@brand-positive-bg:     @color-green-light;
102
@brand-negative:        @color-red-strong;
103
@brand-negative-bg:     @color-red-light;
100
@base-positive:        @color-green-strong;
101
@base-positive-bg:     @color-green-light;
102
@base-negative:        @color-red-strong;
103
@base-negative-bg:     @color-red-light;
104 104

  
105 105

  
106 106

  
......
164 164
@border-radius-large:           6px;
165 165
@border-radius-small:           3px;
166 166

  
167
@component-active-color:        @brand-superlight;
168
@component-active-bg:           @brand-primary; // PENDENT: Variable nicht vorgesehen dafuer
167
@component-active-color:        @base-superlight;
168
@component-active-bg:           @base-primary; // PENDENT: Variable nicht vorgesehen dafuer
169 169

  
170 170
@caret-width-base:              4px;
171 171
@caret-width-large:             5px;
......
184 184
// --------------------------------------
185 185
// LINKS
186 186
// --------------------------------------
187
@link-color:            @brand-link-color;
187
@link-color:            @base-link-color;
188 188
@link-hover-color:      darken(@link-color, 15%);
189 189
@link-decoration:       none;
190 190
@link-hover-decoration: underline;
......
228 228
@headings-font-family:    @font-family-base;
229 229
@headings-weight:         500;
230 230
@headings-line-height:    1.3em;
231
@headings-color:          @brand-heading-color;
231
@headings-color:          @base-heading-color;
232 232
@headings-color-accent:   #000;
233 233

  
234
@headings-color-error:    @brand-error;
235
@headings-color-confirm:  @brand-ok;
234
@headings-color-error:    @base-error;
235
@headings-color-confirm:  @base-ok;
236 236

  
237 237
@h1-size:            floor(@font-size-base * 1.1); //  ~**px
238 238
@h2-size:            floor(@font-size-base * 1.2); //  ~**px
......
255 255
// Heading 1 (H1)
256 256
// -----------------------
257 257
// Fixed on top of every page together with the action bar
258
@brand-h1-color:        @_brand-h1-color;
259
@brand-h1-bg:           @_brand-h1-bg;
258
@base-h1-color:        @_base-h1-color;
259
@base-h1-bg:           @_base-h1-bg;
260 260
@h1-padding:            0.7em 0.5em 0.7em 1.3em;
261 261
@h1-margin:             0;
262
@brand-h1-border-top:  @_brand-h1-border-top;
262
@base-h1-border-top:  @_base-h1-border-top;
263 263
// -----------------------
264 264
// Heading Controlpanels
265 265
// -----------------------
......
275 275
// -----------------------
276 276
// Data types
277 277
// -----------------------
278
@heading-and-label-color:   @brand-data-label-color  ;
279
@heading-and-label-bg:      @brand-data-label-color  ;
280
@data-color:                @brand-data-color ;
278
@heading-and-label-color:   @base-data-label-color  ;
279
@heading-and-label-bg:      @base-data-label-color  ;
280
@data-color:                @base-data-color ;
281 281

  
282 282
@long-desc-size:            @font-size-verysmall ;
283
@long-desc-color:           @brand-text-color ;
283
@long-desc-color:           @base-text-color ;
284 284

  
285 285

  
286 286

  
......
563 563
@controlpanel-radius:         @contentbox-radius      ;
564 564

  
565 565
// PENDENT: noetig?
566
@controlpanel-bg-hover:       @brand-superdark        ;
567
@controlpanel-bg-hover-text:  @brand-light            ;
568
@controlpanel-active-bg:      @brand-darker            ;
569
@controlpanel-active-text:    @brand-lighter          ;
566
@controlpanel-bg-hover:       @base-superdark        ;
567
@controlpanel-bg-hover-text:  @base-light            ;
568
@controlpanel-active-bg:      @base-darker            ;
569
@controlpanel-active-text:    @base-lighter          ;
570 570

  
571 571
@controlpanel-h3-color:       @h3-size ;
572 572
@controlpanel-h3-size:        110%    ;
......
657 657
@message-padding:        0.6em 0.6em 0.5em 0.6em ;
658 658

  
659 659
// Error
660
@message_error_bg:       @brand-error-bg ;
661
@message_error_border:   1px solid @brand-error ;
662
@message_error_text:     @brand-error ;
660
@message_error_bg:       @base-error-bg ;
661
@message_error_border:   1px solid @base-error ;
662
@message_error_text:     @base-error ;
663 663
// OK
664
@message_ok_bg:          @brand-ok-bg ;
665
@message_ok_border:      1px solid @brand-ok ;
666
@message_ok_text:        @brand-ok ;
664
@message_ok_bg:          @base-ok-bg ;
665
@message_ok_border:      1px solid @base-ok ;
666
@message_ok_text:        @base-ok ;
667 667
// Info & Hint
668
@message_info_bg:        @brand-info-bg ;
669
@message_info_border:    1px solid @brand-info ;
670
@message_info_text:      @brand-info ;
668
@message_info_bg:        @base-info-bg ;
669
@message_info_border:    1px solid @base-info ;
670
@message_info_text:      @base-info ;
671 671
// Warning
672
@message_warning_bg:     @brand-warning-bg ;
673
@message_warning_border: 1px solid @brand-warning ;
674
@message_warning_text:   @brand-warning ;
672
@message_warning_bg:     @base-warning-bg ;
673
@message_warning_border: 1px solid @base-warning ;
674
@message_warning_text:   @base-warning ;
675 675
// Hint (like Info above, just to make it sure working)
676 676
@message_hint_bg:        @message_info_bg ;
677 677
@message_hint_border:    @message_info_border ;
......
689 689
// -----------------------
690 690
// Date picker
691 691
// -----------------------
692
@jquery_datepicker-bg-color: @brand-superlight ;
692
@jquery_datepicker-bg-color: @base-superlight ;
693 693

  
694 694
// -----------------------
695 695
// UI-Dialog
696 696
// -----------------------
697
@jquery_ui_dialog-bg-color:   @brand-verylight ;
697
@jquery_ui_dialog-bg-color:   @base-verylight ;
698 698
@jquery_ui_dialog-bg-style:   @_bg_style_body ;
699 699

  
700 700
// -----------------------
701 701
// TOOLTIPSTER
702 702
// -----------------------
703
@jquery_ui_tooltipster-bg-color:       @brand-standard ;
704
@jquery_ui_tooltipster-border-color:   @brand-lighter ;
705
@jquery_ui_tooltipster-color:         @brand-verylight ;
703
@jquery_ui_tooltipster-bg-color:       @base-standard ;
704
@jquery_ui_tooltipster-border-color:   @base-lighter ;
705
@jquery_ui_tooltipster-color:         @base-verylight ;
706 706

  
707 707

  
708 708

  
......
935 935
  --gray-verylight:     @gray-verylight;
936 936
  --gray-superlight:    @gray-superlight; // White
937 937

  
938
  --color-standard:     @brand-standard;
939
  --color-superlight:   @brand-superlight;
940
  --color-verylight:    @brand-verylight;
941
  --color-lighter:      @brand-lighter;
942
  --color-light:        @brand-light;
943
  --color-dark:         @brand-dark;
944
  --color-darker:       @brand-darker;
945
  --color-verydark:     @brand-verydark;
946
  --color-superdark:    @brand-superdark;
938
  --color-standard:     @base-standard;
939
  --color-superlight:   @base-superlight;
940
  --color-verylight:    @base-verylight;
941
  --color-lighter:      @base-lighter;
942
  --color-light:        @base-light;
943
  --color-dark:         @base-dark;
944
  --color-darker:       @base-darker;
945
  --color-verydark:     @base-verydark;
946
  --color-superdark:    @base-superdark;
947 947

  
948 948
  --msg-ok-strong:        @msg-green-strong;
949 949
  --msg-ok-light:         @msg-green-light;
......
955 955
  --msg-warning-light:    @msg-orange-light;
956 956

  
957 957
}
958

  
css/less/variables_color_style.less
11 11
// DESCRIPTION:
12 12
//
13 13
// CONTENTS:
14
// - BRAND COLORS
14 15
// - BASE COLORS
15 16
//   - Grey Shades
16
//   - BRAND COLORS
17
//   - BASE COLORS
17 18
// - MAIN PROPERTIES (STANDARD TEXT COLORS)
18 19
// - SCAFFOLDING (PAGE)
19 20
// - FRAME HEADER
......
34 35

  
35 36
// ----------------------------------------------------------------------------
36 37

  
38
// --------------------------------------
39
// BRAND COLORS
40
// --------------------------------------
41
// used for h1 headers and buttons
42
//
43
// grey-brown-green: #406449;
44

  
45
@brand-color:       #406449;
46
@on-brand-color:    #fff;
47

  
48
@brand-color-light: lighten(@brand-color, 10%);
49

  
37 50
// --------------------------------------
38 51
// YOUR CUSTOM COLOR STYLE
39 52
// --------------------------------------
......
152 165

  
153 166

  
154 167
// --------------------------------------
155
// BRAND COLORS (CALCULATED)
168
// BASE COLORS (CALCULATED)
156 169
// --------------------------------------
157
// Calculation of the variations of the brand colors
170
// Calculation of the variations of the base colors
158 171
// It is generally not necessary to touch the following code,
159 172
// change therefore the gray colors above
160 173

  
161 174
@colorstyle: "green_brown" ; // not style_*, only * like "plum"
162
@brandstyle: "style_@{colorstyle}" ; // DO NOT TOUCH
175
@basestyle: "style_@{colorstyle}" ; // DO NOT TOUCH
163 176

  
164 177

  
165
@brand-standard:    @@brandstyle ; // DO NOT TOUCH
178
@base-standard:    @@basestyle ; // DO NOT TOUCH
166 179

  
167
@brand-superdark:   multiply( @brand-standard , @gray-superdark) ; //  almost Black
168
@brand-verydark:    multiply( @brand-standard , @gray-verydark) ;
169
@brand-darker:      multiply( @brand-standard , @gray-darker) ;
170
@brand-dark:        multiply( @brand-standard , @gray-dark) ;
180
@base-superdark:   multiply( @base-standard , @gray-superdark) ; //  almost Black
181
@base-verydark:    multiply( @base-standard , @gray-verydark) ;
182
@base-darker:      multiply( @base-standard , @gray-darker) ;
183
@base-dark:        multiply( @base-standard , @gray-dark) ;
171 184

  
172
@brand-light:       screen( @brand-standard , @gray-light) ;
173
@brand-lighter:     screen( @brand-standard , @gray-lighter) ;
174
@brand-verylight:   screen( @brand-standard , @gray-verylight) ;
175
@brand-superlight:  @gray-superlight ; // White
185
@base-light:       screen( @base-standard , @gray-light) ;
186
@base-lighter:     screen( @base-standard , @gray-lighter) ;
187
@base-verylight:   screen( @base-standard , @gray-verylight) ;
188
@base-superlight:  @gray-superlight ; // White
176 189

  
177 190

  
178 191

  
......
185 198
// -----------------------
186 199

  
187 200
// Body
188
@_bg_style_body:            linear-gradient(to bottom,  @brand-verylight, @brand-light);
201
@_bg_style_body:            linear-gradient(to bottom,  @base-verylight, @base-light);
189 202
// Control panels
190
@_bg_style_controlpanel:    linear-gradient(to top,     @brand-light,     @brand-verylight);
203
@_bg_style_controlpanel:    linear-gradient(to top,     @base-light,     @base-verylight);
191 204
// Buttons
192
@_bg_style_button:          linear-gradient(to top,     @brand-light,     @brand-verylight);
205
@_bg_style_button:          linear-gradient(to top,     @base-light,     @base-verylight);
193 206
@_bg_style_button_neutral:  linear-gradient(to top,     @gray-light,      @gray-verylight);
194 207

  
195 208

  
......
199 212
// a mixin for the body background
200 213
// CUSTOMIZE:
201 214
.bg-body {
202
  //background-image:     linear-gradient(to bottom, @brand-verylight, @brand-light); // GRADIENT
203
  background-color:     @brand-light ;  // same as bottom stop-color bottom in background-image below
215
  //background-image:     linear-gradient(to bottom, @base-verylight, @base-light); // GRADIENT
216
  background-color:     @base-light ;  // same as bottom stop-color bottom in background-image below
204 217
  // background-image:  none; // NO GRADIENT
205 218
}
206 219
.bg-content {
207
  background-image:     linear-gradient(to bottom, @brand-verylight, @brand-light); // GRADIENT
208
  //background-color:     @brand-light ;  // same as bottom stop-color bottom in background-image below
220
  background-image:     linear-gradient(to bottom, @base-verylight, @base-light); // GRADIENT
221
  //background-color:     @base-light ;  // same as bottom stop-color bottom in background-image below
209 222
  // background-image:  none; // NO GRADIENT
210 223
}
211 224

  
......
219 232
// light  is for background-colors
220 233

  
221 234
// Error (Red)
222
@msg-red-strong:      mix(@brand-darker,     @color-red-strong, 20);
223
@msg-red-light:       mix(@brand-verylight,  @color-red-light,  60);
235
@msg-red-strong:      mix(@base-darker,     @color-red-strong, 20);
236
@msg-red-light:       mix(@base-verylight,  @color-red-light,  60);
224 237
// OK (Green)
225
@msg-green-strong:    mix(@brand-darker,     @color-green-strong, 20);
226
@msg-green-light:     mix(@brand-verylight,  @color-green-light,  60);
238
@msg-green-strong:    mix(@base-darker,     @color-green-strong, 20);
239
@msg-green-light:     mix(@base-verylight,  @color-green-light,  60);
227 240
// Info/Hint (Blue)
228
@msg-blue-strong:     mix(@brand-darker,     @color-blue-strong, 20);
229
@msg-blue-light:      mix(@brand-verylight,  @color-blue-light,  20);
241
@msg-blue-strong:     mix(@base-darker,     @color-blue-strong, 20);
242
@msg-blue-light:      mix(@base-verylight,  @color-blue-light,  20);
230 243
// Warning (Orange)
231
@msg-orange-strong:   mix(@brand-darker,     @color-orange-strong, 20); // more brown
232
@msg-orange-light:    mix(@brand-lighter,    @color-orange-light,  50);
233
@msg-orange-strong:   multiply(@brand-darker,     @color-orange-strong); // more brown
234
@msg-orange-light:    multiply(@brand-lighter,    @color-orange-light);
244
@msg-orange-strong:   mix(@base-darker,     @color-orange-strong, 20); // more brown
245
@msg-orange-light:    mix(@base-lighter,    @color-orange-light,  50);
246
@msg-orange-strong:   multiply(@base-darker,     @color-orange-strong); // more brown
247
@msg-orange-light:    multiply(@base-lighter,    @color-orange-light);
235 248

  
236 249
//@msg-red-light:       screen( @msg-red-strong , @gray-verylight) ;
237
//@msg-red-light:       screen( @msg-red-strong , @brand-light) ;
250
//@msg-red-light:       screen( @msg-red-strong , @base-light) ;
238 251
//@msg-green-light:     screen( @msg-green-strong , @gray-verylight) ;
239
//@msg-green-light:     screen( @msg-green-strong , @brand-light) ;
252
//@msg-green-light:     screen( @msg-green-strong , @base-light) ;
240 253
//@msg-blue-light:      screen( @msg-blue-strong , @gray-verylight) ;
241 254
//@msg-orange-light:    screen( @msg-orange-strong , @gray-verylight) ;
242 255

  
......
249 262
// MAIN PROPERTIES (STANDARD TEXT COLORS)
250 263
// --------------------------------------
251 264
// PENDENT: genauer anschauen
252
@brand-text-color:          @gray-dark ; //
253
@brand-text-color-accent:   @brand-standard ; //
265
@base-text-color:          @gray-dark ; //
266
@base-text-color-accent:   @base-standard ; //
254 267

  
255
@brand-link-color:          @brand-dark ; //
256
@brand-link-color-hover:    @brand-darker ; //
268
@base-link-color:          @base-dark ; //
269
@base-link-color-hover:    @base-darker ; //
257 270

  
258
@brand-table-text-color:    @brand-superdark ; //
271
@base-table-text-color:    @base-superdark ; //
259 272

  
260
@brand-heading-color:       @brand-superdark ; // Standard heading color
261
@brand-heading-bg:          @brand-dark ; //
273
@base-heading-color:       @base-superdark ; // Standard heading color
274
@base-heading-bg:          @base-dark ; //
262 275

  
263
@brand-data-color:          @brand-standard ; //
264
@brand-data-label-color:    @brand-darker ; // Standard-Label color
276
@base-data-color:          @base-standard ; //
277
@base-data-label-color:    @base-darker ; // Standard-Label color
265 278

  
266 279
// Text (Label & data)
267
@brand-primary:         @brand-text-color;
268
@brand-label:           @brand-data-label-color; // PENDENT: wozu?
269
@brand-label-bg:        @brand-lighter; // PENDENT: wozu?
280
@base-primary:         @base-text-color;
281
@base-label:           @base-data-label-color; // PENDENT: wozu?
282
@base-label-bg:        @base-lighter; // PENDENT: wozu?
270 283

  
271 284

  
272 285

  
......
276 289
// SCAFFOLDING (PAGE)
277 290
// --------------------------------------
278 291

  
279
@body-bg:               @brand-verylight; // general OBSOLETE
280
@content-bg:            @brand-superlight; // background first tabs PENDENT: obsolete!
281
@heading-bg:            @brand-lighter ; // controlpanels & other stuff PENDENT: obsolete!
292
@body-bg:               @base-verylight; // general OBSOLETE
293
@content-bg:            @base-superlight; // background first tabs PENDENT: obsolete!
294
@heading-bg:            @base-lighter ; // controlpanels & other stuff PENDENT: obsolete!
282 295

  
283
@text-color:            @brand-primary; // PENDENT: obsolete!
284
@heading-color:         @brand-heading-color ; // labels & table headings // PENDENT: obsolete!
285
@caption-color:         @brand-heading-color ; // caption // PENDENT: obsolete!
296
@text-color:            @base-primary; // PENDENT: obsolete!
297
@heading-color:         @base-heading-color ; // labels & table headings // PENDENT: obsolete!
298
@caption-color:         @base-heading-color ; // caption // PENDENT: obsolete!
286 299

  
287 300

  
288 301

  
......
290 303
// FRAME HEADER (DASHBOARD)
291 304
// --------------------------------------
292 305

  
293
@_dashbrd_bg:            @brand-darker ;
294
@_dashbrd_text:          @brand-verylight ;
295
@_dashbrd_link:          @brand-light ;
296
@_dashbrd_link_hover:    @brand-superlight ;
297
@_dashbrd_input_bg:      @brand-light;
298
@_dashbrd_input_text:    @brand-superdark ;
306
@_dashbrd_bg:            @base-darker ;
307
@_dashbrd_text:          @base-verylight ;
308
@_dashbrd_link:          @base-light ;
309
@_dashbrd_link_hover:    @base-superlight ;
310
@_dashbrd_input_bg:      @base-light;
311
@_dashbrd_input_text:    @base-superdark ;
299 312

  
300 313

  
301 314

  
......
304 317
// MENU TOP (CSS)
305 318
// --------------------------------------
306 319

  
307
@_menu_bg:               @brand-lighter ;
308
@_menu_border_color:     @brand-standard ;
320
@_menu_bg:               @base-lighter ;
321
@_menu_border_color:     @base-standard ;
309 322

  
310 323

  
311
@_menu_link:             @brand-darker ;
312
@_menu_link_bg:          @brand-lighter ;
313
@_menu_link_hover:       @brand-verydark ;
314
@_menu_link_hover_bg:    @brand-light ;
324
@_menu_link:             @base-darker ;
325
@_menu_link_bg:          @base-lighter ;
326
@_menu_link_hover:       @base-verydark ;
327
@_menu_link_hover_bg:    @base-light ;
315 328

  
316
@_menu_link_bg_level1:         @brand-light ;
317
@_menu_link_bg_level1_hover:   @brand-light ;
318
@_menu_link_bg_level2:         @brand-light ;
319
@_menu_link_bg_level2_hover:   @brand-lighter ;
320
@_menu_link_bg_level3:         @brand-lighter ;
321
@_menu_link_bg_level3_hover:   @brand-light ;
329
@_menu_link_bg_level1:         @base-light ;
330
@_menu_link_bg_level1_hover:   @base-light ;
331
@_menu_link_bg_level2:         @base-light ;
332
@_menu_link_bg_level2_hover:   @base-lighter ;
333
@_menu_link_bg_level3:         @base-lighter ;
334
@_menu_link_bg_level3_hover:   @base-light ;
322 335

  
323 336

  
324 337

  
......
326 339
// --------------------------------------
327 340
// MENU LEFT (JS)
328 341
// --------------------------------------
329
@_menu_left_bg:                   @brand-standard ;
342
@_menu_left_bg:                   @base-standard ;
330 343

  
331
@_menu_left_level_1_color:        @brand-darker ;
332
@_menu_left_level_1_bg:           @brand-light ;
333
@_menu_left_level_1_hover_color:  @brand-verylight ;
334
@_menu_left_level_1_hover_bg:     @brand-dark ;
344
@_menu_left_level_1_color:        @base-darker ;
345
@_menu_left_level_1_bg:           @base-light ;
346
@_menu_left_level_1_hover_color:  @base-verylight ;
347
@_menu_left_level_1_hover_bg:     @base-dark ;
335 348

  
336
@_menu_left_level_2_color:        @brand-darker ;
337
@_menu_left_level_2_bg:           @brand-lighter ;
338
@_menu_left_level_2_hover_color:  @brand-superdark ;
339
@_menu_left_level_2_hover_bg:     @brand-light ;
349
@_menu_left_level_2_color:        @base-darker ;
350
@_menu_left_level_2_bg:           @base-lighter ;
351
@_menu_left_level_2_hover_color:  @base-superdark ;
352
@_menu_left_level_2_hover_bg:     @base-light ;
340 353

  
341
@_menu_left_level_3_color:        @brand-darker ;
342
@_menu_left_level_3_bg:           @brand-lighter ;
343
@_menu_left_level_3_hover_color:  @brand-superdark ;
344
@_menu_left_level_3_hover_bg:     @brand-light ;
354
@_menu_left_level_3_color:        @base-darker ;
355
@_menu_left_level_3_bg:           @base-lighter ;
356
@_menu_left_level_3_hover_color:  @base-superdark ;
357
@_menu_left_level_3_hover_bg:     @base-light ;
345 358

  
346 359

  
347 360
// Just additional stuff
348
@_menu_open_color: @brand-lighter ;
349
@_menu_open_bg:    @brand-darker ;
361
@_menu_open_color: @base-lighter ;
362
@_menu_open_bg:    @base-darker ;
350 363

  
351 364

  
352 365

  
......
357 370
// HEADER H1
358 371
// --------------------------------------
359 372
// Header right on top of #content (h1 only once per page)
360
@_brand-h1-color:       @brand-lighter ;
361
@_brand-h1-bg:          @brand-dark ;
362
@_brand-h1-border-top:  1px @brand-standard solid ;
373
@_base-h1-color:       @on-brand-color;
374
@_base-h1-bg:          @brand-color;
375
@_base-h1-border-top:  1px @base-standard solid ;
363 376

  
364 377

  
365 378

  
......
369 382
// ACTIONBAR
370 383
// --------------------------------------
371 384
// PENDENT: Button-Parameter anwenden
372
@_actionbar-bg:                   @brand-light;
373
@_actionbar-bg-active:            @brand-lighter;
385
@_actionbar-bg:                   @base-light;
386
@_actionbar-bg-active:            @base-lighter;
374 387

  
375
@_actionbar-font-color:           @brand-dark;
376
@_actionbar-font-color-active:    @brand-dark;
388
@_actionbar-font-color:           @base-dark;
389
@_actionbar-font-color-active:    @base-dark;
377 390

  
378
@_actionbar-border-color:         @brand-dark;
379
@_actionbar-border-color-active:  @brand-dark ;
391
@_actionbar-border-color:         @base-dark;
392
@_actionbar-border-color-active:  @base-dark ;
380 393

  
381
@_actionbar-hover-bg:             @brand-lighter;
382
@_actionbar-hover-color:          @brand-verydark;
394
@_actionbar-hover-bg:             @base-lighter;
395
@_actionbar-hover-color:          @base-verydark;
383 396

  
384
@_actionbar-font-color-disabled:  @brand-standard;
397
@_actionbar-font-color-disabled:  @base-standard;
385 398

  
386 399

  
387 400

  
......
389 402
// TABS
390 403
// --------------------------------------
391 404
// background tabs panel (data/content)
392
@_tabs-bg:                    @brand-superlight ;
393
@_tabs-panel-bg:              @brand-verylight ; // like active
394
@_tabs-border-color:          @brand-standard ;
405
@_tabs-bg:                    @base-superlight ;
406
@_tabs-panel-bg:              @base-verylight ; // like active
407
@_tabs-border-color:          @base-standard ;
395 408

  
396
@_tabs-default-bg:            @brand-superlight;
397
@_tabs-default-color:         @brand-darker;
398
@_tabs-default-hover-bg:      @brand-lighter;
399
@_tabs-default-hover-color:   @brand-darker;
409
@_tabs-default-bg:            @base-superlight;
410
@_tabs-default-color:         @base-darker;
411
@_tabs-default-hover-bg:      @base-lighter;
412
@_tabs-default-hover-color:   @base-darker;
400 413

  
401
@_tabs-active-bg:             darken( @brand-verylight, 3% );
402
@_tabs-active-color:          @brand-darker;
403
@_tabs-active-hover-bg:       @brand-verylight;
404
@_tabs-active-hover-color:    @brand-darker;
414
@_tabs-active-bg:             darken( @base-verylight, 3% );
415
@_tabs-active-color:          @base-darker;
416
@_tabs-active-hover-bg:       @base-verylight;
417
@_tabs-active-hover-color:    @base-darker;
405 418

  
406 419

  
407 420

  
......
434 447
// TABLES
435 448
// --------------------------------------
436 449

  
437
@_table-border-color:             @brand-standard; //  table and cell border
450
@_table-border-color:             @base-standard; //  table and cell border
438 451

  
439 452
@_table-bg:                       transparent; //  overall background-color
440
@_table-bg-accent:                @brand-lighter; //  for striping
441
@_table-bg-hover:                 @brand-superlight;
453
@_table-bg-accent:                @base-lighter; //  for striping
454
@_table-bg-hover:                 @base-superlight;
442 455
@_table-bg-active:                @_table-bg-hover;
443 456

  
444 457
@_table-caption-bg:               transparent ;
445
@_table-caption-color:            @brand-dark;
458
@_table-caption-color:            @base-dark;
446 459

  
447 460
// --------------
448 461
// Table Cells
449 462
// --------------
450
@_t-cell-text-color:              @brand-verydark;
451
@_t-cell-th-text-color:            @brand-dark; // even for label/.label in tables
463
@_t-cell-text-color:              @base-verydark;
464
@_t-cell-th-text-color:            @base-dark; // even for label/.label in tables
452 465

  
453
@_t-cell-head-bg:                 @brand-dark;
466
@_t-cell-head-bg:                 @base-dark;
454 467
@_t-cell-head-bg-accent:          @gray-light; // PENDENT: wo eingesetzt
455
@_t-cell-head-text:               @brand-superlight;
456
@_t-cell-head-text-accent:        @brand-lighter; // Links
468
@_t-cell-head-text:               @base-superlight;
469
@_t-cell-head-text-accent:        @base-lighter; // Links
457 470

  
458
@_t-cell-label-text:              @brand-darker;
459
@_t-cell-label-text-accent:       @brand-superdark;
460
@_t-cell-data-text:               @brand-verydark;
461
@_t-cell-data-text-accent:        @brand-superdark;
471
@_t-cell-label-text:              @base-darker;
472
@_t-cell-label-text-accent:       @base-superdark;
473
@_t-cell-data-text:               @base-verydark;
474
@_t-cell-data-text-accent:        @base-superdark;
462 475

  
463
@_t-cell-databox-text-color:      @brand-darker ;
464
@_t-cell-databox-border-color:    @brand-light ;
476
@_t-cell-databox-text-color:      @base-darker ;
477
@_t-cell-databox-border-color:    @base-light ;
465 478

  
466
@_t-cell-foot-text:               @brand-superdark;
479
@_t-cell-foot-text:               @base-superdark;
467 480

  
468 481
// -----------------------
469 482
// Zebra effect in list tables
470 483
// -----------------------
471
@_t-row-zebra-bg-odd:             @brand-verylight;
472
@_t-row-zebra-bg-even:            @brand-lighter;
484
@_t-row-zebra-bg-odd:             @base-verylight;
485
@_t-row-zebra-bg-even:            @base-lighter;
473 486

  
474
@_table-list-zebra-text-color:    @brand-dark ;
475
@_table-list-zebra-link-color:    @brand-standard ;
487
@_table-list-zebra-text-color:    @base-dark ;
488
@_table-list-zebra-link-color:    @base-standard ;
476 489

  
477
@_t-row-zebra-bg-hover:           @brand-superlight;
490
@_t-row-zebra-bg-hover:           @base-superlight;
478 491

  
479 492

  
480 493

  
......
484 497
// --------------------------------------
485 498
// TABLE HORIZONTAL (tbl.horizontal)
486 499
// --------------------------------------
487
//@_table-horiz-th-color:  @brand-darker ;
488
//@_table-horiz-td-color:  @brand-verydark ;
500
//@_table-horiz-th-color:  @base-darker ;
501
//@_table-horiz-td-color:  @base-verydark ;
489 502

  
490 503
// -----------------------
491 504
// CAPTION (caption & th.caption)
492 505
// -----------------------
493
//@_table-horiz-caption-color:  @brand-darker ;
494
//@_table-horiz-caption-bg:     @brand-verylight ;
506
//@_table-horiz-caption-color:  @base-darker ;
507
//@_table-horiz-caption-bg:     @base-verylight ;
495 508

  
496 509
// -----------------------
497 510
// SPAN DATA
......
523 536
// CONTROL PANELS
524 537
// --------------------------------------
525 538

  
526
@_controlpanel-bg-color:      @brand-verylight ;
539
@_controlpanel-bg-color:      @base-verylight ;
527 540
@_controlpanel-bg:            @_bg_style_controlpanel ;
528
@_controlpanel-color:         @brand-dark  ;
529
@_controlpanel-header-color:  @brand-dark  ;
530
@_controlpanel-border-color:  @brand-standard  ;
541
@_controlpanel-color:         @base-dark  ;
542
@_controlpanel-header-color:  @base-dark  ;
543
@_controlpanel-border-color:  @base-standard  ;
531 544

  
532 545

  
533 546

  
......
536 549
// --------------------------------------
537 550
// FORM ELEMENTS
538 551
// --------------------------------------
539
@_formelement-focus-bg:     @brand-light ;
540
@_formelement-focus-text:   @brand-darker ;
541
@_formelement-focus-border: 1px @brand-verydark solid ;
552
@_formelement-focus-bg:     @base-light ;
553
@_formelement-focus-text:   @base-darker ;
554
@_formelement-focus-border: 1px @base-verydark solid ;
542 555

  
543 556

  
544 557

  
......
552 565
// With Manipulation
553 566
// -----------------------
554 567
// Button with manipulation (submit etc.)
555
@_button-strong-color:                @brand-verylight;
556
@_button-strong-bg:                   @brand-dark;
557
@_button-strong-border-color:         @brand-darker;
568
@_button-strong-color:                @on-brand-color;
569
@_button-strong-bg:                   @brand-color;
570
@_button-strong-border-color:         @brand-color;
558 571

  
559
@_button-strong-hover-color:          @brand-lighter;
560
@_button-strong-hover-bg:             @brand-darker;
561
@_button-strong-hover-border-color:   @brand-superdark;
572
@_button-strong-hover-color:          @on-brand-color;
573
@_button-strong-hover-bg:             @brand-color-light;
574
@_button-strong-hover-border-color:   @brand-color-light;
562 575

  
563
@_button-strong-active-color:         @brand-lighter;
564
@_button-strong-active-bg:            @brand-superdark;
565
@_button-strong-active-border-color:  @brand-superdark;
576
@_button-strong-active-color:         @on-brand-color;
577
@_button-strong-active-bg:            @brand-color-light;
578
@_button-strong-active-border-color:  @brand-color-light;
566 579

  
567 580
// -----------------------
568 581
// NEUTRAL
569 582
// -----------------------
570 583
// Button without data manipulation (reset, cancel, open, show etc.)
571
@_button-neutral-color:                 @brand-darker;
572
@_button-neutral-bg:                    @brand-lighter;
573
@_button-neutral-border-color:          @brand-dark;
584
@_button-neutral-color:                 @base-darker;
585
@_button-neutral-bg:                    @base-lighter;
586
@_button-neutral-border-color:          @base-dark;
574 587

  
575
@_button-neutral-hover-color:           @brand-darker;
576
@_button-neutral-hover-bg:              @brand-verylight;
577
@_button-neutral-hover-border-color:    @brand-dark;
588
@_button-neutral-hover-color:           @base-darker;
589
@_button-neutral-hover-bg:              @base-verylight;
590
@_button-neutral-hover-border-color:    @base-dark;
578 591

  
579
@_button-neutral-active-color:          @brand-superdark;
580
@_button-neutral-active-bg:             @brand-standard;
581
@_button-neutral-active-border-color:   @brand-verydark;
592
@_button-neutral-active-color:          @base-superdark;
593
@_button-neutral-active-bg:             @base-standard;
594
@_button-neutral-active-border-color:   @base-verydark;
582 595

  
583 596

  
584 597
// -------------------
......
600 613
@_button-info-bg:                       @color-blue-light;
601 614
@_button-info-border-color:             darken(@color-blue-strong, 5%) ;
602 615

  
603
@_button-link-disabled-color:           @brand-light ;
604

  
605

  
606

  
607

  
608

  
616
@_button-link-disabled-color:           @base-light ;
css/style.css
82 82
  border-radius: 6px;
83 83
}
84 84
.mx-button-standard {
85
  border: 1px #1b1b0e solid;
86
  background-color: #292914;
87
  color: #f5f5f1;
85
  border: 1px #406449 solid;
86
  background-color: #406449;
87
  color: #fff;
88 88
  text-decoration: none;
89 89
}
90 90
.mx-button-standard-hover-focus:hover {
91
  border: 1px #000000 solid;
92
  background-color: #1b1b0e;
93
  color: #e0e0d6;
91
  border: 1px #548360 solid;
92
  background-color: #548360;
93
  color: #fff;
94 94
  text-decoration: none;
95 95
}
96 96
.mx-button-standard-hover-focus:active,
97 97
.mx-button-standard-hover-focus:focus {
98
  border: 1px #000000 solid;
99
  background-color: #000000;
100
  color: #e0e0d6;
98
  border: 1px #548360 solid;
99
  background-color: #548360;
100
  color: #fff;
101 101
  text-decoration: none;
102 102
}
103 103
.mx-button-neutral {
......
3611 3611
input[type="button"].button,
3612 3612
button[type="submit"],
3613 3613
button[type="button"] {
3614
  color: #f5f5f1;
3615
  background-color: #292914;
3616
  border: 1px #1b1b0e solid;
3614
  color: #fff;
3615
  background-color: #406449;
3616
  border: 1px #406449 solid;
3617 3617
}
3618 3618
input[type="submit"]:hover,
3619 3619
input[type="button"]:hover,
3620 3620
input[type="button"].button:hover,
3621 3621
button[type="submit"]:hover,
3622 3622
button[type="button"]:hover {
3623
  color: #e0e0d6;
3624
  background-color: #1b1b0e;
3625
  border: 1px #000000 solid;
3623
  color: #fff;
3624
  background-color: #548360;
3625
  border: 1px #548360 solid;
3626 3626
}
3627 3627
input[type="submit"]:active,
3628 3628
input[type="button"]:active,
......
3634 3634
input[type="button"].button:focus,
3635 3635
button[type="submit"]:focus,
3636 3636
button[type="button"]:focus {
3637
  color: #e0e0d6;
3638
  background-color: #000000;
3639
  border: 1px #000000 solid;
3637
  color: #fff;
3638
  background-color: #548360;
3639
  border: 1px #548360 solid;
3640 3640
}
3641 3641
input[type="button"].neutral,
3642 3642
input[type="submit"].neutral,
......
3699 3699
  border-style: solid;
3700 3700
  border-width: 1px;
3701 3701
  border-radius: 6px;
3702
  border: 1px #1b1b0e solid;
3703
  background-color: #292914;
3704
  color: #f5f5f1;
3702
  border: 1px #406449 solid;
3703
  background-color: #406449;
3704
  color: #fff;
3705 3705
  text-decoration: none;
3706 3706
}
3707 3707
a.button.below {
3708 3708
  clear: both !important;
3709 3709
}
3710 3710
a.button:hover {
3711
  border: 1px #000000 solid;
3712
  background-color: #1b1b0e;
3713
  color: #e0e0d6;
3711
  border: 1px #548360 solid;
3712
  background-color: #548360;
3713
  color: #fff;
3714 3714
  text-decoration: none;
3715 3715
}
3716 3716
a.button:active,
3717 3717
a.button:focus {
3718
  border: 1px #000000 solid;
3719
  background-color: #000000;
3720
  color: #e0e0d6;
3718
  border: 1px #548360 solid;
3719
  background-color: #548360;
3720
  color: #fff;
3721 3721
  text-decoration: none;
3722 3722
}
3723 3723
a.button.neutral:link,
......
3814 3814
  border-style: solid;
3815 3815
  border-width: 1px;
3816 3816
  border-radius: 6px;
3817
  border: 1px #1b1b0e solid;
3818
  background-color: #292914;
3819
  color: #f5f5f1;
3817
  border: 1px #406449 solid;
3818
  background-color: #406449;
3819
  color: #fff;
3820 3820
  text-decoration: none;
3821 3821
}
3822 3822
#content label.button:hover {
3823
  border: 1px #000000 solid;
3824
  background-color: #1b1b0e;
3825
  color: #e0e0d6;
3823
  border: 1px #548360 solid;
3824
  background-color: #548360;
3825
  color: #fff;
3826 3826
  text-decoration: none;
3827 3827
}
3828 3828
#content label.button:active,
3829 3829
#content label.button:focus {
3830
  border: 1px #000000 solid;
3831
  background-color: #000000;
3832
  color: #e0e0d6;
3830
  border: 1px #548360 solid;
3831
  background-color: #548360;
3832
  color: #fff;
3833 3833
  text-decoration: none;
3834 3834
}
3835 3835
#content label.button.neutral {
......
4187 4187
  z-index: 1020;
4188 4188
  top: 60px;
4189 4189
  width: 100%;
4190
  color: #e0e0d6;
4191
  background-color: #292914;
4190
  color: #fff;
4191
  background-color: #406449;
4192 4192
  padding: 0.7em 0.5em 0.7em 1.3em;
4193 4193
  border-top: 1px #666633 solid;
4194 4194
}
......
4198 4198
  margin: 1.6em 0 0.4em 0;
4199 4199
}
4200 4200
body > h1 {
4201
  color: #e0e0d6;
4202
  background-color: #292914;
4201
  color: #fff;
4202
  background-color: #406449;
4203 4203
  padding: 0.7em 0.5em 0.7em 1.3em;
4204 4204
}
4205 4205
h2 {
......
5578 5578
.ui-dialog .ui-dialog-titlebar {
5579 5579
  padding: 0.4em 1em;
5580 5580
  border: none;
5581
  background-color: #292914 !important;
5582
  color: #e0e0d6 !important;
5581
  background-color: #406449 !important;
5582
  color: #fff !important;
5583 5583
  font-weight: normal;
5584 5584
  position: relative;
5585 5585
  text-align: left;
......
7395 7395
  // Days
7396 7396
  td a {
7397 7397
    &.ui-state-default {
7398
      color: @brand-dark;
7398
      color: @base-dark;
7399 7399
    }
7400 7400
    &.ui-state-hover {
7401 7401
      color: #ffffff ;
......
7403 7403
      border: #000000 ;
7404 7404
    }
7405 7405
    &.ui-state-active {
7406
      border: 1px solid @brand-dark;
7407
      background-color: @brand-dark;
7408
      color: @brand-verylight;
7406
      border: 1px solid @base-dark;
7407
      background-color: @base-dark;
7408
      color: @base-verylight;
7409 7409
    }
7410 7410

  
7411 7411
  }
......
7840 7840
/* DEVELOPING (developing.less)                                  */
7841 7841
/* ------------------------------------------------------------- */
7842 7842
body.developing > header {
7843
  background-color: #292914;
7843
  background-color: #406449;
7844 7844
  display: block;
7845 7845
  overflow: hidden;
7846 7846
}
7847 7847
body.developing > header h1 {
7848 7848
  float: left;
7849
  color: #e0e0d6;
7849
  color: #fff;
7850 7850
  padding: 1em;
7851 7851
}
7852 7852
body.developing > header nav {
......
7966 7966
body.developing button[type="submit"],
7967 7967
body.developing button[type="button"],
7968 7968
body.developing a.button {
7969
  color: #f5f5f1;
7970
  background-color: #292914;
7971
  border: 1px #1b1b0e solid;
7969
  color: #fff;
7970
  background-color: #406449;
7971
  border: 1px #406449 solid;
7972 7972
}
7973 7973
body.developing input[type="submit"].hover,
7974 7974
body.developing input[type="button"].hover,
......
7976 7976
body.developing button[type="submit"].hover,
... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.

Auch abrufbar als: Unified diff