123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>The source code</title>
- <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
- <style type="text/css">
- .highlight { display: block; background-color: #ddd; }
- </style>
- <script type="text/javascript">
- function highlight() {
- document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
- }
- </script>
- </head>
- <body onload="prettyPrint(); highlight();">
- <pre class="prettyprint lang-js">// TODO: Change value to $include-default-uis !default;
- $include-panel-uis: true;
- // ===============================
- // ========= BASE PANEL ==========
- // ===============================
- $panel-border-radius: null !default;
- $panel-border-width: 1px !default;
- $panel-base-color: adjust-color($base-color, $hue: 0deg, $saturation: 0.542%, $lightness: 7.843%) !default; //#DFE8F6
- $panel-border-color: adjust-color($base-color, $hue: 0deg, $saturation: 7.644%, $lightness: -8.627%) !default;
- // ===============================
- // ========= PANEL BODY ==========
- // ===============================
- $panel-body-border-style: solid !default;
- $panel-body-background-color: #fff !default;
- $panel-body-color: #000 !default;
- $panel-body-border-color: $panel-border-color !default;
- $panel-body-font-size: 12px !default;
- // ===============================
- // ======== PANEL TOOLS ==========
- // ===============================
- $tool-size: 15px !default;
- // ===============================
- // ======== PANEL HEADER =========
- // ===============================
- $panel-header-border-width: 1px !default;
- $panel-header-border-style: solid !default;
- $panel-header-inner-border: true !default;
- $panel-header-inner-border-width: 1px 0 0 !default;
- //padding
- $panel-header-padding: 3px 5px 4px !default;
- $panel-header-vertical-padding: 5px 4px !default;
- //fonts
- $panel-header-font-size: ceil($font-size * .9) !default; //11px
- $panel-header-line-height: 17px !default;
- $panel-header-font-weight: bold !default;
- $panel-header-font-family: $font-family !default;
- //icon
- $panel-header-icon-width: 16px !default;
- $panel-header-icon-height: 16px !default;
- //background
- $panel-header-background-gradient: 'panel-header' !default;
- // UI defaults
- $panel-header-border-color: $panel-border-color !default;
- $panel-header-inner-border-color: adjust-color($panel-base-color, $hue: 0deg, $saturation: -6.098%, $lightness: 4.902%) !default;
- $panel-header-color: adjust-color($panel-base-color, $hue: 0deg, $saturation: 38.347%, $lightness: -63.725%) !default;
- $panel-header-background-color: adjust-color($panel-base-color, $hue: 0deg, $saturation: 6.402%, $lightness: -4.51%) !default;
- // ===============================
- // ======== FRAMED PANEL =========
- // ===============================
- $frame-base-color: $panel-base-color !default;
- //border
- $panel-frame-border-radius: 4px !default;
- $panel-frame-border-width: 1px !default;
- $panel-frame-border-style: solid !default;
- $panel-frame-padding: 4px !default;
- // UI defaults
- $panel-frame-background-color: $frame-base-color !default;
- $panel-frame-border-color: $panel-border-color !default;
- </pre>
- </body>
- </html>
|