2013-07-31 11:21:33 -05:00
|
|
|
// Global values
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Grays
|
|
|
|
// -------------------------
|
|
|
|
@black: #000;
|
2013-12-23 17:36:32 -06:00
|
|
|
@gray: #bbb;
|
2014-08-28 09:03:13 -05:00
|
|
|
@grayDark: #262626;
|
2013-12-29 10:30:38 -06:00
|
|
|
@grayDarker: #1f1f1f;
|
2013-12-23 17:36:32 -06:00
|
|
|
|
|
|
|
@grayLight: #ADAFAE;
|
2014-01-07 13:41:48 -06:00
|
|
|
@grayLighter: #BBBFC2;
|
2013-07-31 11:21:33 -05:00
|
|
|
@white: #fff;
|
|
|
|
|
|
|
|
// Accent colors
|
|
|
|
// -------------------------
|
2013-12-23 17:36:32 -06:00
|
|
|
@blue: #33B5E5;
|
2015-02-07 15:00:33 -06:00
|
|
|
@blueDark: #005f81;
|
2013-12-23 17:36:32 -06:00
|
|
|
@green: #669900;
|
2014-08-11 05:11:24 -05:00
|
|
|
@red: #CC3900;
|
2013-12-23 17:36:32 -06:00
|
|
|
@yellow: #ECBB13;
|
|
|
|
@orange: #FF8800;
|
|
|
|
@pink: #FF4444;
|
|
|
|
@purple: #9933CC;
|
2014-09-05 01:26:50 -05:00
|
|
|
@variable: #32D1DF;
|
2013-12-23 17:36:32 -06:00
|
|
|
|
2014-07-28 11:11:52 -05:00
|
|
|
// grafana Variables
|
2013-12-23 17:36:32 -06:00
|
|
|
// -------------------------
|
2015-02-26 11:37:35 -06:00
|
|
|
@grafanaPanelBackground: @grayDarker;
|
2015-03-18 18:42:18 -05:00
|
|
|
@grafanaPanelBorder: solid 1px @grayDark;
|
2015-02-26 11:37:35 -06:00
|
|
|
@grafanaTriggerBorder: solid 1px #555;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2014-02-13 15:19:11 -06:00
|
|
|
// Graphite Target Editor
|
|
|
|
@grafanaTargetBorder: @black;
|
2014-09-11 07:07:27 -05:00
|
|
|
@grafanaTargetBackground: @grayDark;
|
2014-02-13 15:19:11 -06:00
|
|
|
@grafanaTargetColor: #c8c8c8;
|
|
|
|
@grafanaTargetColorHide: darken(#c8c8c8, 25%);
|
|
|
|
@grafanaTargetSegmentBorder: #050505;
|
|
|
|
|
2014-08-27 08:54:30 -05:00
|
|
|
@grafanaTargetFuncBackground: #333;
|
|
|
|
@grafanaTargetFuncHightlight: #444;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2015-03-05 11:01:41 -06:00
|
|
|
@modalBackground: @black;
|
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
// Scaffolding
|
|
|
|
// -------------------------
|
2014-01-07 15:08:32 -06:00
|
|
|
@bodyBackground: rgb(22,22,22);
|
2013-12-29 10:30:38 -06:00
|
|
|
@textColor: @grayLighter;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
// Links
|
|
|
|
// -------------------------
|
2014-08-18 09:38:04 -05:00
|
|
|
@linkColor: darken(@white,11%);
|
2014-09-24 05:14:20 -05:00
|
|
|
@linkColorDisabled: darken(@linkColor,45%);
|
2014-01-03 17:35:41 -06:00
|
|
|
@linkColorHover: @white;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Typography
|
|
|
|
// -------------------------
|
|
|
|
@sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
@serifFontFamily: Georgia, "Times New Roman", Times, serif;
|
2013-12-23 17:36:32 -06:00
|
|
|
@monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
@baseFontSize: 14px;
|
2015-04-29 07:23:29 -05:00
|
|
|
@baseFontWeight: 400;
|
2013-07-31 11:21:33 -05:00
|
|
|
@baseFontFamily: @sansFontFamily;
|
2013-12-23 17:36:32 -06:00
|
|
|
@baseLineHeight: 20px;
|
2013-07-31 11:21:33 -05:00
|
|
|
@altFontFamily: @serifFontFamily;
|
|
|
|
|
|
|
|
@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
|
2015-09-28 04:53:49 -05:00
|
|
|
@headingsFontWeight: bold; // instead of browser default, bold
|
2015-07-16 03:44:55 -05:00
|
|
|
@headingsColor: darken(@white,11%); // empty to use BS default, @textColor
|
2013-12-23 17:36:32 -06:00
|
|
|
@inputText: @black;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2015-03-05 11:01:41 -06:00
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
// Component sizing
|
|
|
|
// -------------------------
|
|
|
|
// Based on 14px font-size and 20px line-height
|
|
|
|
|
|
|
|
@fontSizeLarge: @baseFontSize * 1.25; // ~18px
|
|
|
|
@fontSizeSmall: @baseFontSize * 0.85; // ~12px
|
|
|
|
@fontSizeMini: @baseFontSize * 0.75; // ~11px
|
|
|
|
|
|
|
|
@paddingLarge: 11px 19px; // 44px
|
|
|
|
@paddingSmall: 2px 10px; // 26px
|
|
|
|
@paddingMini: 0px 6px; // 22px
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
@baseBorderRadius: 3px;
|
|
|
|
@borderRadiusLarge: 4px;
|
|
|
|
@borderRadiusSmall: 2px;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2014-08-18 09:38:04 -05:00
|
|
|
// Lists
|
2015-02-07 13:25:53 -06:00
|
|
|
@grafanaListBackground: #262626;
|
2014-09-05 00:02:59 -05:00
|
|
|
@grafanaListAccent: lighten(@grayDarker, 2%);
|
2014-08-26 09:42:15 -05:00
|
|
|
@grafanaListBorderTop: @grayDark;
|
|
|
|
@grafanaListBorderBottom: @black;
|
2015-02-07 15:00:33 -06:00
|
|
|
@grafanaListHighlight: #333;
|
2015-02-07 13:25:53 -06:00
|
|
|
@grafanaListMainLinkColor: @textColor;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2015-07-16 03:44:55 -05:00
|
|
|
@pageContainerBorderColor: @grayDark;
|
|
|
|
|
2014-09-05 00:02:59 -05:00
|
|
|
// Scrollbars
|
|
|
|
@scrollbarBackground: #3a3a3a;
|
|
|
|
@scrollbarBackground2: #3a3a3a;
|
|
|
|
@scrollbarBorder: black;
|
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
// Tables
|
|
|
|
// -------------------------
|
|
|
|
@tableBackground: transparent; // overall background-color
|
2013-12-23 17:36:32 -06:00
|
|
|
@tableBackgroundAccent: rgba(100, 100, 100, 0.3); // for striping
|
2013-07-31 11:21:33 -05:00
|
|
|
@tableBackgroundHover: @grayDark; // for hover
|
2013-12-23 17:36:32 -06:00
|
|
|
@tableBorder: @grayDark; // table and cell border
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
// Buttons
|
|
|
|
// -------------------------
|
2015-01-22 03:14:24 -06:00
|
|
|
@btnBackground: @grayDark;
|
2013-12-29 10:30:38 -06:00
|
|
|
@btnBackgroundHighlight: darken(@grayLight, 15%);
|
|
|
|
@btnBorder: #bbb;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2015-02-07 15:00:33 -06:00
|
|
|
@btnPrimaryBackground: @blueDark;
|
|
|
|
@btnPrimaryBackgroundHighlight: lighten(@blueDark, 10%);
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
@btnInfoBackground: lighten(@purple, 5%);
|
|
|
|
@btnInfoBackgroundHighlight: darken(@purple, 5%);
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
@btnSuccessBackground: lighten(@green, 5%);
|
|
|
|
@btnSuccessBackgroundHighlight: darken(@green, 5%);
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
@btnWarningBackground: lighten(@orange, 5%);
|
|
|
|
@btnWarningBackgroundHighlight: darken(@orange, 5%);
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-29 10:30:38 -06:00
|
|
|
@btnDangerBackground: lighten(@red, 5%);
|
|
|
|
@btnDangerBackgroundHighlight: darken(@red, 5%);
|
2013-12-23 17:36:32 -06:00
|
|
|
|
2015-01-22 03:14:24 -06:00
|
|
|
@btnInverseBackground: @grayDark;
|
|
|
|
@btnInverseBackgroundHighlight: lighten(@grayDark, 5%);
|
2013-12-23 17:36:32 -06:00
|
|
|
|
2015-02-28 09:41:02 -06:00
|
|
|
@iconContainerBackground: @black;
|
2015-02-26 11:37:35 -06:00
|
|
|
@iconContainerBackgroundHighlight: lighten(@black, 5%);
|
2015-02-28 09:41:02 -06:00
|
|
|
@iconContainerBorder: 1px solid transparent;
|
|
|
|
@iconContainerShadow: 0 0 14px 2px rgba(255,255,255, 0.05);
|
2015-02-26 11:37:35 -06:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
|
2013-07-31 11:21:33 -05:00
|
|
|
// Forms
|
|
|
|
// -------------------------
|
2014-08-27 08:54:30 -05:00
|
|
|
@inputBackground: lighten(@grayDark,5%);
|
2014-08-25 15:39:40 -05:00
|
|
|
@inputBorder: lighten(@grayDark,5%);
|
2013-07-31 11:21:33 -05:00
|
|
|
@inputBorderRadius: @baseBorderRadius;
|
2013-12-23 17:36:32 -06:00
|
|
|
@inputDisabledBackground: #555;
|
|
|
|
@formActionsBackground: transparent;
|
2013-07-31 11:21:33 -05:00
|
|
|
@inputHeight: @baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
|
|
|
|
|
|
|
|
|
|
|
|
// Dropdowns
|
|
|
|
// -------------------------
|
2014-11-08 09:27:49 -06:00
|
|
|
@dropdownBackground: @heroUnitBackground;
|
2013-07-31 11:21:33 -05:00
|
|
|
@dropdownBorder: rgba(0,0,0,.2);
|
|
|
|
@dropdownDividerTop: transparent;
|
2015-02-26 06:01:34 -06:00
|
|
|
@dropdownDividerBottom: #444;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
@dropdownLinkColor: @textColor;
|
2013-07-31 11:21:33 -05:00
|
|
|
@dropdownLinkColorHover: @white;
|
|
|
|
@dropdownLinkColorActive: @white;
|
|
|
|
|
2015-03-27 08:23:23 -05:00
|
|
|
@dropdownLinkBackgroundActive: @blueDark;
|
|
|
|
@dropdownLinkBackgroundHover: @blueDark;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// COMPONENT VARIABLES
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Z-index master list
|
|
|
|
// -------------------------
|
|
|
|
// Used for a bird's eye view of components dependent on the z-axis
|
|
|
|
// Try to avoid customizing these :)
|
|
|
|
@zindexDropdown: 1000;
|
|
|
|
@zindexPopover: 1010;
|
2013-12-23 17:36:32 -06:00
|
|
|
@zindexTooltip: 1020;
|
2013-07-31 11:21:33 -05:00
|
|
|
@zindexFixedNavbar: 1030;
|
|
|
|
@zindexModalBackdrop: 1040;
|
|
|
|
@zindexModal: 1050;
|
|
|
|
|
|
|
|
// Sprite icons path
|
|
|
|
// -------------------------
|
|
|
|
@iconSpritePath: "../img/glyphicons-halflings.png";
|
|
|
|
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
|
|
|
|
|
|
|
|
|
|
|
|
// Input placeholder text color
|
|
|
|
// -------------------------
|
2014-02-12 05:29:46 -06:00
|
|
|
@placeholderText: darken(@textColor, 25%);
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Hr border color
|
|
|
|
// -------------------------
|
2013-12-23 17:36:32 -06:00
|
|
|
@hrBorder: @grayDark;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Horizontal forms & lists
|
|
|
|
// -------------------------
|
|
|
|
@horizontalComponentOffset: 180px;
|
|
|
|
|
|
|
|
|
|
|
|
// Wells
|
|
|
|
// -------------------------
|
2013-12-23 17:36:32 -06:00
|
|
|
@wellBackground: #131517;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Navbar
|
|
|
|
// -------------------------
|
|
|
|
@navbarCollapseWidth: 979px;
|
|
|
|
@navbarCollapseDesktopWidth: @navbarCollapseWidth + 1;
|
2013-12-23 17:36:32 -06:00
|
|
|
|
2015-02-26 11:37:35 -06:00
|
|
|
@navbarHeight: 52px;
|
2015-05-06 09:40:43 -05:00
|
|
|
@navbarBackgroundHighlight: @grayDark;
|
|
|
|
@navbarBackground: @grayDark;
|
2015-02-26 11:37:35 -06:00
|
|
|
@navbarBorder: none;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
@navbarText: @grayLight;
|
|
|
|
@navbarLinkColor: @grayLight;
|
2013-07-31 11:21:33 -05:00
|
|
|
@navbarLinkColorHover: @white;
|
|
|
|
@navbarLinkColorActive: @navbarLinkColorHover;
|
2013-12-23 17:36:32 -06:00
|
|
|
@navbarLinkBackgroundHover: transparent;
|
2013-07-31 11:21:33 -05:00
|
|
|
@navbarLinkBackgroundActive: @navbarBackground;
|
2014-09-24 09:20:55 -05:00
|
|
|
@navbarBrandColor: @linkColor;
|
2015-09-18 01:17:19 -05:00
|
|
|
@navbarDropdownShadow: inset 0px 4px 10px -4px @bodyBackground;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Pagination
|
|
|
|
// -------------------------
|
2013-12-23 17:36:32 -06:00
|
|
|
@paginationBackground: @bodyBackground;
|
|
|
|
@paginationBorder: transparent;
|
|
|
|
@paginationActiveBackground: @blue;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Hero unit
|
|
|
|
// -------------------------
|
2013-12-23 17:36:32 -06:00
|
|
|
@heroUnitBackground: @grayDark;
|
2013-07-31 11:21:33 -05:00
|
|
|
@heroUnitHeadingColor: inherit;
|
|
|
|
@heroUnitLeadColor: inherit;
|
|
|
|
|
|
|
|
|
|
|
|
// Form states and alerts
|
|
|
|
// -------------------------
|
2014-01-03 17:35:41 -06:00
|
|
|
@warningText: darken(#c09853, 10%);
|
2014-09-20 06:32:26 -05:00
|
|
|
@warningBackground: @orange;
|
2013-12-23 17:36:32 -06:00
|
|
|
@warningBorder: transparent;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
@errorText: #b94a48;
|
2013-12-23 17:36:32 -06:00
|
|
|
@errorBackground: @grayLighter;
|
2013-07-31 11:21:33 -05:00
|
|
|
@errorBorder: darken(spin(@errorBackground, -10), 3%);
|
|
|
|
|
|
|
|
@successText: #468847;
|
2013-12-23 17:36:32 -06:00
|
|
|
@successBackground: @grayLighter;
|
2013-07-31 11:21:33 -05:00
|
|
|
@successBorder: darken(spin(@successBackground, -10), 5%);
|
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
@infoText: @blueDark;
|
|
|
|
@infoBackground: @grayLighter;
|
2013-07-31 11:21:33 -05:00
|
|
|
@infoBorder: darken(spin(@infoBackground, -10), 7%);
|
|
|
|
|
|
|
|
|
|
|
|
// Tooltips and popovers
|
|
|
|
// -------------------------
|
|
|
|
@tooltipColor: #fff;
|
2014-11-18 09:58:26 -06:00
|
|
|
@tooltipBackground: rgb(58, 57, 57);
|
2013-07-31 11:21:33 -05:00
|
|
|
@tooltipArrowWidth: 5px;
|
|
|
|
@tooltipArrowColor: @tooltipBackground;
|
2014-12-15 03:53:37 -06:00
|
|
|
@tooltipLinkColor: @linkColor;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
2013-12-23 17:36:32 -06:00
|
|
|
@popoverBackground: @heroUnitBackground;
|
2013-07-31 11:21:33 -05:00
|
|
|
@popoverArrowWidth: 10px;
|
2013-12-23 17:36:32 -06:00
|
|
|
@popoverArrowColor: @popoverBackground;
|
|
|
|
@popoverTitleBackground: @popoverBackground;
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
// Special enhancement for popovers
|
|
|
|
@popoverArrowOuterWidth: @popoverArrowWidth + 1;
|
|
|
|
@popoverArrowOuterColor: rgba(0,0,0,.25);
|
|
|
|
|
2014-09-30 02:50:01 -05:00
|
|
|
// images
|
|
|
|
@checkboxImageUrl: '../img/checkbox.png';
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
// GRID
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Default 940px grid
|
|
|
|
// -------------------------
|
|
|
|
@gridColumns: 12;
|
|
|
|
@gridColumnWidth: 60px;
|
2013-12-23 17:36:32 -06:00
|
|
|
@gridGutterWidth: 20px;
|
2013-07-31 11:21:33 -05:00
|
|
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
|
|
|
|
|
|
|
// 1200px min
|
|
|
|
@gridColumnWidth1200: 70px;
|
2013-12-23 17:36:32 -06:00
|
|
|
@gridGutterWidth1200: 30px;
|
2013-07-31 11:21:33 -05:00
|
|
|
@gridRowWidth1200: (@gridColumns * @gridColumnWidth1200) + (@gridGutterWidth1200 * (@gridColumns - 1));
|
|
|
|
|
|
|
|
// 768px-979px
|
|
|
|
@gridColumnWidth768: 42px;
|
2013-12-23 17:36:32 -06:00
|
|
|
@gridGutterWidth768: 20px;
|
2013-07-31 11:21:33 -05:00
|
|
|
@gridRowWidth768: (@gridColumns * @gridColumnWidth768) + (@gridGutterWidth768 * (@gridColumns - 1));
|
|
|
|
|
|
|
|
|
|
|
|
// Fluid grid
|
|
|
|
// -------------------------
|
|
|
|
@fluidGridColumnWidth: percentage(@gridColumnWidth/@gridRowWidth);
|
2013-12-23 17:36:32 -06:00
|
|
|
@fluidGridGutterWidth: percentage(@gridGutterWidth/@gridRowWidth);
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
// 1200px min
|
2013-12-23 17:36:32 -06:00
|
|
|
@fluidGridColumnWidth1200: percentage(@gridColumnWidth1200/@gridRowWidth1200);
|
|
|
|
@fluidGridGutterWidth1200: percentage(@gridGutterWidth1200/@gridRowWidth1200);
|
2013-07-31 11:21:33 -05:00
|
|
|
|
|
|
|
// 768px-979px
|
2013-12-23 17:36:32 -06:00
|
|
|
@fluidGridColumnWidth768: percentage(@gridColumnWidth768/@gridRowWidth768);
|
|
|
|
@fluidGridGutterWidth768: percentage(@gridGutterWidth768/@gridRowWidth768);
|