Project

General

Profile

Download (12 KB) Statistics
| Branch: | Tag: | Revision:
1
// Global variable overrides. Must be declared before importing Valo.
2

    
3
// Defines the plaintext font size, weight and family. Font size affects general component sizing.
4
//$v-font-size: 16px;
5
//$v-font-weight: 300;
6
$v-font-family: "Open Sans", sans-serif;
7

    
8
// Defines the border used by all components.
9
//$v-border: 1px solid (v-shade 0.7);
10
//$v-border-radius: 4px;
11

    
12
// Affects the color of some component elements, e.g Button, Panel title, etc
13
//$v-background-color: hsl(210, 0%, 98%);
14
// Affects the color of content areas, e.g  Panel and Window content, TextField input etc
15
//$v-app-background-color: $v-background-color;
16

    
17
// Affects the visual appearance of all component
18
//$v-gradient: v-linear 8%;
19
//$v-bevel-depth: 30%;
20
//$v-shadow-opacity: 5%;
21

    
22
// Defines colors for indicating status (focus, success, failure)
23
//$v-focus-color: valo-focus-color(); // Calculates a suitable color automatically
24
//$v-friendly-color: #2c9720;
25
//$v-error-indicator-color: #ed473b;
26

    
27
// ================== DARK ================ //
28

    
29
// $v-app-loading-text: "Dark Valo";
30
$v-background-color: #444d50;
31
$v-focus-color: #07a9ca;
32
$v-focus-style: 0 0 3px 2px $v-focus-color;
33
$v-bevel-depth: 40%;
34
$v-gradient: v-linear 12%;
35
$v-border-radius: 10px;
36
$v-font-family: Roboto, sans-serif;
37
$v-font-weight: 400;
38
$v-font-weight--header: 400;
39
$v-bevel: inset 0 1px 2px v-tint, inset 0 0 1px (v-tint 0.1);
40
$v-shadow: 0 0 0 3px rgba(0,0,0,0.32), 0 1px 0 3px rgba(255,255,255,0.14);
41
$v-textfield-bevel: inset 0 2px 2px v-shade;
42
$v-textfield-shadow: $v-shadow;
43
$v-unit-size: 40px;
44
$v-overlay-shadow: 0 0 0 3px (v-shade 8), 0 5px 10px (v-shade 4);
45
$v-component-group-spacing: 6px;
46

    
47
// ========================================== //
48

    
49
// For more information, see: https://vaadin.com/book/-/page/themes.valo.html
50
// Example variants can be copy/pasted from https://vaadin.com/wiki/-/wiki/Main/Valo+Examples
51

    
52
@import "../valo/valo.scss";
53

    
54
@import "valo-fix.scss";
55

    
56
@import "custom-fields.scss";
57

    
58

    
59
// ========================================== //
60

    
61
// import custom font icons TODO rename font
62
@include v-font(IcoMoon, "../../../../../fonts/icomoon");
63

    
64
.IcoMoon {
65
   font-family: IcoMoon;
66
   font-style: normal;
67
   font-weight: normal;
68
   -webkit-font-smoothing: antialiased;
69
   -moz-osx-font-smoothing: grayscale;
70
   display: inline-block;
71
   text-align: center;
72
}
73

    
74
// ========================================== //
75
// Status colors for the redistration
76
// 
77
// change-color cant be used since this is not fully supported by the vaadin sass-compiler
78
// see https://github.com/vaadin/sass-compiler/issues/147
79
$status-reference-color:$v-focus-color;
80
$hue-offset: hue($status-reference-color);
81
$plain-red: adjust-color($status-reference-color, $hue: -1 * $hue-offset);  // red as 0 degree hue
82
$status-rejected-color: adjust-color($plain-red, $hue: 0deg);
83
$status-curation-color: adjust-color($plain-red, $hue: 35deg); 
84
$status-preparation-color: adjust-color($plain-red, $hue: 60deg); 
85
$status-published-color: adjust-color($plain-red, $hue: 105deg); 
86
$status-ready-color: adjust-color($plain-red, $hue: 180deg);
87
// ========================================== //
88

    
89

    
90
@mixin edit-valo {
91
  @include valo;
92

    
93
  // Insert your own theme rules here
94
  
95
  // --- AbstractPageView --- // 
96
  #header {
97
    text-align: center;
98
    margin: round($v-layout-spacing-vertical/2); // corresponds to layout spacing
99
    font-size: $v-font-size--huge; // corresponds to valo style huge (26px)
100
  }
101

    
102
  #subheader {
103
    text-align: center;
104
    margin: round($v-layout-spacing-vertical/2);
105
    font-size: $v-font-size; // valo default font size (16px)
106
  }
107
  // ------------------- // 
108
  
109
  .logo_giant {
110
    font-size: 400%;
111
   }
112
   
113
   .v-button-giant {
114
     font-size: 32px;
115
     .v-icon {
116
       font-size: 64px;
117
       line-height: 50px;
118
     }
119
   }
120

    
121
   .v-label .caption {
122
       font-size: $v-font-size--small;
123
   }
124
   
125
   // label with caption and icon horizonatally aligned
126
   // to apply this to a Vaadin Label set 'label-nowrap'
127
   // as style
128

    
129
    .v-caption-label-nowrap, .v-label-label-nowrap {
130
        display: inline;
131
    }
132
    .v-label-label-nowrap {
133
//         margin-left: 8px; // TODO use sass variable here
134
//         vertical-align: baseline;
135
        .v-icon {
136
           display : inline;
137
        }
138
    } 
139

    
140
   .friendly-foreground {
141
        color: $v-friendly-color;
142
    }
143
   
144
   .v-button .button-badge {
145
         @include valo-badge-style($states: inactive, $background-color: lighten($v-background-color, 10%), $active-color: $v-focus-color);
146
    } 
147
   
148
   .dashboard-actions {
149
      margin: 0 10%;
150
    
151
      .dashboard-action-2 {
152
        width: 50%;
153
        .v-label {
154
            white-space: normal;
155
        }
156
      }
157
      .dashboard-action-3 {
158
        width: 33%;
159
        .v-label {
160
            white-space: normal;
161
        }
162
      }
163
      &[width-range~="-650px"] {
164
          .dashboard-action-2, .dashboard-action-3 {
165
              width: 100%;
166
          }
167
      }
168
    }
169

    
170

    
171
    // ===== workflow ==== // 
172

    
173
    #workflow-container {
174
        text-align: center;
175
        margin-top: $v-unit-size;
176
    }
177
    
178
    $workflow-icon-size: 110px;
179
    // can not be set per css as this need to set as property to the component in vaadin
180
    $workflow-timeline-bar-height: 10px; 
181
    // the fator by which the caption should be smaller than the circe
182
    $workflow-caption-shrink: 0.64; 
183

    
184
    $workflow-icon-margin-h: $workflow-icon-size / 5;
185
    $workflow-icon-left: $workflow-icon-margin-h / 2;
186
    $workflow-caption-font-size: $workflow-icon-size * $workflow-caption-shrink;        
187
    
188
    .workflow {
189
        .steps {
190
            z-index: 10;
191
            
192
            .v-csslayout {
193
                width: $workflow-icon-size + 2 * $workflow-icon-margin-h;
194
                .v-label {
195
                    display: block;
196
                    text-align: center;
197
                }
198
            }
199
         }
200
         .timeline {
201
            display: block;
202
            position: relative;
203
            top: ($workflow-icon-size / 2) + $workflow-timeline-bar-height / 2;
204
            padding: 0 $workflow-icon-size / 2;
205
            .timeline-bar {
206
                z-index: 0;
207
                background-color: $v-font-color;
208
            }
209
        }
210
    }
211

    
212
    .workflow-item {
213
        .v-button {
214
            margin: 0 $workflow-icon-margin-h;
215
            font-size: $workflow-icon-size;
216
            height: $workflow-icon-size;
217
            width: $workflow-icon-size;
218
            line-height: $workflow-icon-size;
219
        
220
            .v-icon, .v-button-caption {
221
                position: absolute;
222
                left: $workflow-icon-left;
223
                top: 0px;
224
            }
225
            .v-button-caption {
226
                font-family: monospace;
227
                left: (($workflow-icon-size - $workflow-caption-font-size) / 2) + $workflow-icon-left; // 30px;
228
                top: -2px;
229
                color: $v-background-color;
230
                font-size: $workflow-caption-font-size; // 70px;
231
            }
232
        }
233
    }
234

    
235
    #workingset {
236
            padding: round($v-unit-size / 2);
237
            .registration-list, .registration-list-item {
238
                margin-top: round($v-unit-size / 2);
239
            }
240
    }
241

    
242
    // --------------------------------------------------- //
243
    
244
    .registration-list-item {
245
        border-top: valo-border($border: $v-border, $color: $v-background-color, $strength: 0.7);
246
        padding-top: 4px; // avoid button group to overlap with border
247
    }
248

    
249
   .registration-workflow-item {
250
       border: valo-border($border: $v-border, $color: $v-background-color, $strength: 0.7);
251
    }
252

    
253
    // tab element being part of a process ----------- //
254
    // use $v-unit-size instead of $v-font-size * 3?
255
    .workflow-step-wrap {
256
        padding-right: 10px;
257
        height: $v-font-size * 3;
258
        background-color: scale-color(lighten($v-app-background-color, 20%), $saturation: -20%);
259
        @include box-shadow(inset 0 0 5px $v-app-background-color);
260
    }
261
    .workflow-step {
262
        line-height: $v-font-size * 3;
263
    }
264
    .v-caption-workflow-step {
265
        vertical-align: top;
266
        padding: 0;
267
         .v-icon {
268
            line-height: $v-font-size * 3;
269
            font-size: $v-font-size * 3.5;
270
            padding-right: 10px;
271
            color: $v-background-color;
272
        }
273
    }
274

    
275
    .workflow-tabsheet {
276
        
277
        table.v-tabsheet-tabs, .v-tabsheet-tabs tr, .v-tabsheet-tabs tbody {
278
          width: 100%; 
279
        }
280
        
281
        .v-tabsheet-tabitemcell {
282
              width: 25%;
283
        }
284

    
285
        .v-tabsheet-tabitem {
286
            
287
            // background-color: scale-color(lighten($v-app-background-color, 20%), $saturation: -20%);
288
            // @include valo-gradient($color: $v-background-color, $gradient: $v-gradient, $fallback: null, $direction: to right);
289
            // @include box-shadow(inset 0 0 5px $v-app-background-color);
290
            // background-color: $v-font-color
291
            
292
            // border: valo-border($border: 2px solid, $color: $v-font-color, $strength: 1);
293
            
294
            background-color: scale-color(lighten($v-app-background-color, 20%), $saturation: -20%);
295
            @include box-shadow(inset 0 0 5px $v-app-background-color);
296
            border: valo-border($border: 2px solid, $color: $v-app-background-color, $strength: 1);
297
            border-color: $v-app-background-color;
298
            .v-caption {
299
                // line-height: $v-unit-size;
300
                margin: 0;
301
                padding: 0;
302
                padding-right: $v-unit-size / 2;
303
                border: 0px none;
304
            }
305
            .v-icon {
306
                line-height: $v-unit-size;
307
                font-size: $v-unit-size * 1.8;
308
                vertical-align: middle;
309
                // padding-right: $v-unit-size / 2;
310
                
311
                //color: $v-font-color;
312
                
313
                color: $v-app-background-color;
314
            }
315
        }
316
    }
317

    
318
    // ----------------------------------------------- //
319
    
320
   // status colors --------------------------------- //
321
    .status-REJECTED {
322
        color: $status-rejected-color;
323
    }
324
    .status-CURATION {
325
        color: $status-curation-color;
326
    }
327
    .status-PREPARATION {
328
        color: $status-preparation-color;
329
    }
330
    .status-PUBLISHED {
331
        color: $status-published-color;
332
    }
333
    .status-READY {
334
        color: $status-ready-color;
335
    }
336

    
337
    .bg-status-REJECTED {
338
        background-color: $status-rejected-color;
339
    }
340
    .bg-status-CURATION {
341
        background-color: $status-curation-color;
342
    }
343
    .bg-status-PREPARATION {
344
        background-color: $status-preparation-color;
345
    }
346
    .bg-status-PUBLISHED {
347
        background-color: $status-published-color;
348
    }
349
    .bg-status-READY {
350
        background-color: $status-ready-color;
351
    }
352
    // ----------------------------------------------- //
353
    
354
    #registration-list {
355
        /* --- for the css layout --- */
356
        overflow: auto;
357
        height: 100%;
358
        padding-left: round($v-unit-size/3);
359
        padding-right: round($v-unit-size/3);
360
        
361
        border: valo-border($border: $v-border, $color: $v-background-color, $strength: 1.4);
362
        border-radius: $v-border-radius - first-number($v-border) $v-border-radius - first-number($v-border) 0 0;
363
        /* ----------------------------------------------- */
364
        
365
        // for grid rows
366
        .status-REJECTED {
367
            color: $status-rejected-color;
368
            td.registrationType, td.status {
369
                color: $status-rejected-color;
370
            }
371
        }
372
        .status-CURATION {
373
            color: $status-curation-color;
374
            td.registrationType, td.status {
375
                color: $status-curation-color;
376
            }
377
        }
378
        .status-PREPARATION {
379
            color: $status-preparation-color;
380
            td.registrationType, td.status {
381
                color: $status-preparation-color;
382
            }
383
        }
384
        .status-PUBLISHED {
385
            color: $status-published-color;
386
            td.registrationType, td.status {
387
                color: $status-published-color;
388
            }
389
        }
390
        .status-READY {
391
            color: $status-ready-color;
392
            td.registrationType, td.status {
393
                color: $status-ready-color;
394
            }
395
        }
396
    }
397

    
398

    
399
}
(3-3/5)