Advertisement
Guest User

Untitled

a guest
Dec 1st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 2.86 KB | None | 0 0
  1. // If you edit this file you need to compile the theme. See README.md for details.
  2.  
  3. // Global variable overrides. Must be declared before importing Valo.
  4.  
  5.  
  6. // Defines the plaintext font size, weight and family. Font size affects general component sizing.
  7. //$v-font-size: 16px;
  8. //$v-font-weight: 300;
  9. $v-font-family: "FontAwesome", sans-serif;
  10.  
  11. // Defines the border used by all components.
  12. //$v-border: 1px solid (v-shade 0.7);
  13. //$v-border-radius: 4px;
  14.  
  15. // Affects the color of some component elements, e.g Button, Panel title, etc
  16. //$v-background-color: hsl(210, 0%, 98%);
  17. // Affects the color of content areas, e.g  Panel and Window content, TextField input etc
  18. //$v-app-background-color: $v-background-color;
  19.  
  20. // Affects the visual appearance of all components
  21. //$v-gradient: v-linear 8%;
  22. //$v-bevel-depth: 30%;
  23. //$v-shadow-opacity: 5%;
  24.  
  25. // Defines colors for indicating status (focus, success, failure)
  26. //$v-focus-color: valo-focus-color(); // Calculates a suitable color automatically
  27. //$v-friendly-color: #2c9720;
  28. //$v-error-indicator-color: #ed473b;
  29.  
  30. // For more information, see: https://vaadin.com/book/-/page/themes.valo.html
  31. // Example variants can be copy/pasted from https://vaadin.com/wiki/-/wiki/Main/Valo+Examples
  32.  
  33. @import "../valo/valo.scss";
  34.  
  35. @mixin mapeditingtheme {
  36.   @include valo;
  37.  
  38.   // Insert your own theme rules here
  39.  
  40.   $bofrost-blau: #162677;
  41.   $bofrost-gelb: #f1a010;
  42.   $bofrost-rot: #D10018;
  43.   $bofrost-gruen: #29d100;
  44.   $bofrost-anthrazit: #333333;
  45.   $bofrost-dunkelgrau: #555555;
  46.   $bofrost-dunkles-grau: #999999;
  47.   $bofrost-mittleres-grau: #CCCCCC;
  48.   $bofrost-helles-grau: #f5f5f5;
  49.   $bofrost-weiss: #ffffff;
  50.  
  51.   .background {
  52.         background: $bofrost-blau;
  53.     }
  54.  
  55.   .correctionDialogWindow {
  56.     .v-window-header {
  57.       color: #FFFFFF;
  58.     }
  59.   }
  60.  
  61.   .correctionsGridStyle {
  62.     .v-grid-cell {
  63.       padding: 5px 0;
  64.     }
  65.   }
  66.  
  67.   .correctionStyle{
  68.     margin-left: 5px;
  69.     margin-top: -2px;
  70.   }
  71.  
  72.   .headerColor{
  73.     background-color: $bofrost-blau;
  74.     color: $bofrost-weiss;
  75.   }
  76.  
  77.   .headerColor {
  78.     .v-button-link {
  79.       color: $bofrost-weiss;
  80.     }
  81.   }
  82.  
  83.   .headerColor {
  84.     .v-button-link:hover {
  85.       opacity: 0.75;
  86.     }
  87.   }
  88.  
  89.   .v-button:focus::after {
  90.     -webkit-box-shadow: none;
  91.     box-shadow: none;
  92.   }
  93.  
  94.   .headerColor {
  95.     .v-popupbutton {
  96.       .v-popup-indicator::before {
  97.         content: "";
  98.       }
  99.     }
  100.   }
  101.  
  102.   .mainTitle {
  103.     font-size: xx-large;
  104.     font-weight: normal;
  105.     margin-left: 13px;
  106.   }
  107.  
  108.   .subTitle {
  109.     font-size: small;
  110.     margin-top: 10px;
  111.   }
  112.  
  113.   .shortlinkContainer{
  114.     margin-right: 9px;
  115.   }
  116.  
  117.   .iconLeft {
  118.     .v-icon {
  119.       font-size: 25px;
  120.       opacity: 0.8;
  121.     }
  122.   }
  123.  
  124.   .iconRight {
  125.     .v-icon {
  126.       opacity: 0.8;
  127.     }
  128.   }
  129.   .iconRight {
  130.     .v-button {
  131.       .v-icon{
  132.         top: 60%;
  133.       }
  134.     }
  135.   }
  136. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement