mirror of
https://github.com/minio/minio.git
synced 2025-11-24 03:27:44 -05:00
revert browser newux changes (#5714)
This commit is contained in:
@@ -1,98 +1,101 @@
|
||||
// Colors
|
||||
@amber : #ffc721;
|
||||
@red : #ff6b68;
|
||||
@grey : #f5f5f5;
|
||||
@blue : #00a6f7;
|
||||
@white : #ffffff;
|
||||
@black : #000000;
|
||||
@blue : #2196F3;
|
||||
@green : #33d46f;
|
||||
@yellow : #FFC107;
|
||||
@orange : #ffc155;
|
||||
|
||||
|
||||
// Theme Coloes
|
||||
@muted-bg: #fafafa;
|
||||
@muted-border: #f3f3f3;
|
||||
|
||||
|
||||
// Fonts
|
||||
@font-family-sans-serif: 'Roboto', sans-serif;
|
||||
@font-family-icon: 'Material-Design-Iconic-Font';
|
||||
@font-size-base: 15px;
|
||||
@font-size-small: @font-size-base - 2;
|
||||
@font-size-extra-small: @font-size-base - 4;
|
||||
@font-weight-bold: 500;
|
||||
@font-weight-normal: 400;
|
||||
@line-height-base: 1.42857;
|
||||
|
||||
|
||||
// Body
|
||||
@body-bg : #f7f7f7;
|
||||
|
||||
|
||||
// Links
|
||||
/*--------------------------
|
||||
Base
|
||||
----------------------------*/
|
||||
@font-family-sans-serif : 'Lato', sans-serif;
|
||||
@font-family-icon : 'fontAwesome';
|
||||
@body-bg : #edecec;
|
||||
@text-color : #8e8e8e;
|
||||
@font-size-base : 15px;
|
||||
@link-color : #46a5e0;
|
||||
@link-hover-decoration : none;
|
||||
|
||||
|
||||
// Text Colors
|
||||
@text-color: #6f6f6f;
|
||||
@headings-color: #384143;
|
||||
@text-muted-color: #8a8a8a;
|
||||
/*--------------------------
|
||||
File Explorer
|
||||
----------------------------*/
|
||||
@fe-sidebar-width : 320px;
|
||||
@text-muted-color : #BDBDBD;
|
||||
@text-strong-color : #333;
|
||||
|
||||
// Header
|
||||
@header-height: 120px;
|
||||
@header-link-color: #f8f8f8;
|
||||
@header-z-index: 10;
|
||||
@toolbar-height: 4.33rem;
|
||||
@toolbar-bg: #f0f0f0;
|
||||
/*--------------------------
|
||||
Colors
|
||||
----------------------------*/
|
||||
@cyan : #2ED2FF;
|
||||
@amber : #ffc107;
|
||||
@red : #ff726f;
|
||||
@grey : #f5f5f5;
|
||||
@dark-blue : #0084d3;
|
||||
@blue : #00a6f7;
|
||||
@white : #ffffff;
|
||||
@black : #1b1e25;
|
||||
@blue : #50b2ff;
|
||||
@light-blue : #c1d1e8;
|
||||
@green : #33d46f;
|
||||
@yellow : #FFC107;
|
||||
@orange : #ffc155;
|
||||
@purple : #9C27B0;
|
||||
@teal : #009688;
|
||||
@brown : #795548;
|
||||
@blue-gray : #374952;
|
||||
@dark-gray : #32393F;
|
||||
|
||||
|
||||
// Sidebar
|
||||
@sidebar-width: 21.33rem;
|
||||
@sidebar-bg: @white;
|
||||
@sidebar-padding: 2rem;
|
||||
@sidebar-z-index: @header-z-index + 2;
|
||||
/*--------------------------
|
||||
Dropdown
|
||||
----------------------------*/
|
||||
@dropdown-fallback-border : transparent;
|
||||
@dropdown-border : transparent;
|
||||
@dropdown-divider-bg : '';
|
||||
@dropdown-link-hover-bg : rgba(0,0,0,0.05);
|
||||
@dropdown-link-color : @text-color;
|
||||
@dropdown-link-hover-color : #333;
|
||||
@dropdown-link-disabled-color : #e4e4e4;
|
||||
@dropdown-divider-bg : rgba(0,0,0,0.08);
|
||||
@dropdown-link-active-color : #333;
|
||||
@dropdown-link-active-bg : rgba(0, 0, 0, 0.075);
|
||||
@dropdown-shadow : 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
|
||||
|
||||
// Path
|
||||
@path-link-color: @text-color;
|
||||
/*--------------------------
|
||||
Modal
|
||||
----------------------------*/
|
||||
@modal-content-fallback-border-color: transparent;
|
||||
@modal-content-border-color: transparent;
|
||||
@modal-backdrop-bg: rgba(0,0,0,0.1);
|
||||
@modal-header-border-color: transparent;
|
||||
@modal-title-line-height: transparent;
|
||||
@modal-footer-border-color: transparent;
|
||||
@modal-inner-padding: 30px 35px;
|
||||
@modal-title-padding: 30px 35px 0px;
|
||||
@modal-sm: 400px;
|
||||
|
||||
|
||||
// Objects
|
||||
@object-row-hover-bg: #f0f0f0;
|
||||
/*-------------------------
|
||||
Buttons
|
||||
--------------------------*/
|
||||
@btn-border-radius-large: 2px;
|
||||
@btn-border-radius-small: 2px;
|
||||
@btn-border-radius-base: 2px;
|
||||
|
||||
|
||||
// Buttons
|
||||
@border-radius-large: 4px;
|
||||
@border-radius-small: 2px;
|
||||
@border-radius-base: 2px;
|
||||
/*-------------------------
|
||||
Colors
|
||||
--------------------------*/
|
||||
@brand-primary: #2298f7;
|
||||
@brand-success: #4CAF50;
|
||||
@brand-info: #00BCD4;
|
||||
@brand-warning: #FF9800;
|
||||
@brand-danger: #FF5722;
|
||||
|
||||
|
||||
// Forms
|
||||
@input-border-color: @muted-border;
|
||||
@input-color: @headings-color;
|
||||
@input-bg: transparent;
|
||||
@input-height: 2.5rem;
|
||||
/*-------------------------
|
||||
Form
|
||||
--------------------------*/
|
||||
@input-border: #eee;
|
||||
|
||||
|
||||
// Dropdown
|
||||
@dropdown-link-hover-bg: @muted-bg;
|
||||
@dropdown-border-color: #e6e6e6;
|
||||
@dropdown-link-color: @text-color;
|
||||
@dropdown-link-hover-color: @headings-color;
|
||||
@dropdown-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
|
||||
@zindex-dropdown: 1000;
|
||||
|
||||
|
||||
// Modal
|
||||
@modal-content-fallback-border-color: transparent;
|
||||
@modal-content-border-color: transparent;
|
||||
@modal-backdrop-bg: fade(@black, 10%);
|
||||
@modal-header-border-color: transparent;
|
||||
@modal-title-line-height: transparent;
|
||||
@modal-footer-border-color: transparent;
|
||||
@modal-inner-padding: 2rem 2.25rem;
|
||||
@modal-title-padding: 2rem 2.25rem 1rem;
|
||||
@modal-sm: 400px;
|
||||
/*-------------------------
|
||||
List
|
||||
--------------------------*/
|
||||
@list-row-selected-bg: #fbf2bf;
|
||||
@list-row-even-bg: #fafafa;
|
||||
Reference in New Issue
Block a user