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
    // ===== workflow ==== // 
171

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

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

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

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

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

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

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

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

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

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

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

    
397

    
398
}
(3-3/5)