docs: RWD website - upgrading bootswatch theme file
This patch updates to the latest bootstrap versione (3.3.0) and contextually pushes the colour theme and fonts required by our style. The patch provides source files (*.less) to recompile bootstrap.min.css . Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
156397e6fb
commit
1fd3b59a96
12
docs/css/bootstrap.min.css
vendored
12
docs/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,181 +1,127 @@
|
||||
// Cerulean 2.2.2
|
||||
// Cerulean 3.3.0
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
|
||||
|
||||
// TYPOGRAPHY
|
||||
// -----------------------------------------------------
|
||||
|
||||
@import url(//fonts.googleapis.com/css?family=Telex);
|
||||
|
||||
// SCAFFOLDING
|
||||
// -----------------------------------------------------
|
||||
.btn-shadow(@color) {
|
||||
#gradient > .vertical-three-colors(lighten(@color, 8%), @color, 60%, darken(@color, 4%));
|
||||
filter: none;
|
||||
border-bottom: 1px solid darken(@color, 10%);
|
||||
}
|
||||
|
||||
// NAVBAR
|
||||
// -----------------------------------------------------
|
||||
// Navbar =====================================================================
|
||||
|
||||
.navbar {
|
||||
.btn-shadow(@navbar-default-bg);
|
||||
filter: none;
|
||||
.box-shadow(0 1px 10px rgba(0, 0, 0, 0.1));
|
||||
|
||||
&-default {
|
||||
|
||||
.brand {
|
||||
padding: 14px 20px 16px;
|
||||
font-family: @headingsFontFamily;
|
||||
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.badge {
|
||||
background-color: #fff;
|
||||
color: @navbar-default-bg;
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
line-height: 20px;
|
||||
}
|
||||
&-inverse {
|
||||
#gradient > .vertical-three-colors(lighten(@navbar-inverse-bg, 8%), lighten(@navbar-inverse-bg, 4%), 60%, darken(@navbar-inverse-bg, 2%));
|
||||
filter: none;
|
||||
border-bottom: 1px solid darken(@navbar-inverse-bg, 10%);
|
||||
|
||||
.nav > li > a {
|
||||
padding: 16px 10px 14px;
|
||||
font-family: @headingsFontFamily;
|
||||
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.badge {
|
||||
background-color: #fff;
|
||||
color: @navbar-inverse-bg;
|
||||
}
|
||||
}
|
||||
|
||||
.search-query {
|
||||
border: 1px solid darken(@linkColor, 10%);
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
.navbar-text {
|
||||
padding: 19px 10px 18px;
|
||||
line-height: 13px;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
&-inverse {
|
||||
|
||||
.navbar-search .search-query {
|
||||
color: @textColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: @navbarCollapseWidth) {
|
||||
|
||||
.navbar .nav-collapse {
|
||||
|
||||
.nav li > a {
|
||||
|
||||
font-family: @headingsFontFamily;
|
||||
font-weight: normal;
|
||||
color: @white;
|
||||
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
||||
|
||||
&:hover {
|
||||
background-color: #2B7CAC;
|
||||
}
|
||||
}
|
||||
|
||||
.nav .active > a {
|
||||
.box-shadow(none);
|
||||
background-color: #2B7CAC;
|
||||
}
|
||||
|
||||
.dropdown-menu li > a:hover,
|
||||
.dropdown-menu li > a:focus,
|
||||
.dropdown-submenu:hover > a {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.navbar-form,
|
||||
.navbar-search {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.nav-header {
|
||||
color: #2B7CAC;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-inverse .nav-collapse {
|
||||
|
||||
.nav li > a {
|
||||
color: @navbarInverseLinkColor;
|
||||
|
||||
&:hover {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.nav .active > a,
|
||||
.nav > li > a:hover,
|
||||
.dropdown-menu a:hover {
|
||||
background-color: rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
div.subnav {
|
||||
|
||||
font-family: @headingsFontFamily;
|
||||
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
|
||||
|
||||
&-fixed {
|
||||
top: @navbarHeight;
|
||||
}
|
||||
}
|
||||
|
||||
// NAV
|
||||
// -----------------------------------------------------
|
||||
|
||||
// BUTTONS
|
||||
// -----------------------------------------------------
|
||||
|
||||
.btn {
|
||||
#gradient > .vertical-three-colors(@white, @white, 5%, darken(@white, 0%));
|
||||
@shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
||||
.box-shadow(@shadow);
|
||||
|
||||
&:hover {
|
||||
background-position: 0 0;
|
||||
.navbar-nav > li > a,
|
||||
&-brand {
|
||||
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
.buttonBackground(lighten(@btnPrimaryBackground, 5%), @btnPrimaryBackground);
|
||||
@media (max-width: @grid-float-breakpoint-max) {
|
||||
|
||||
.navbar {
|
||||
|
||||
.dropdown-header {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-info {
|
||||
.buttonBackground(lighten(@btnInfoBackground, 5%), @btnInfoBackground);
|
||||
// Buttons ====================================================================
|
||||
|
||||
.btn {
|
||||
|
||||
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
|
||||
|
||||
.caret {
|
||||
border-top-color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
|
||||
.btn-shadow(@btn-default-bg);
|
||||
|
||||
&:hover {
|
||||
color: @btn-default-color;
|
||||
}
|
||||
|
||||
.caret {
|
||||
border-top-color: @text-color;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
.btn-shadow(@btn-default-bg);
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
.btn-shadow(@btn-primary-bg);
|
||||
}
|
||||
|
||||
.btn-success {
|
||||
.buttonBackground(lighten(@btnSuccessBackground, 5%), @btnSuccessBackground);
|
||||
.btn-shadow(@btn-success-bg);
|
||||
}
|
||||
|
||||
.btn-info {
|
||||
.btn-shadow(@btn-info-bg);
|
||||
}
|
||||
|
||||
.btn-warning {
|
||||
.buttonBackground(lighten(@btnWarningBackground, 5%), @btnWarningBackground);
|
||||
.btn-shadow(@btn-warning-bg);
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
.buttonBackground(lighten(@btnDangerBackground, 5%), @btnDangerBackground);
|
||||
.btn-shadow(@btn-danger-bg);
|
||||
}
|
||||
|
||||
.btn-inverse {
|
||||
.buttonBackground(lighten(@btnInverseBackground, 5%), @btnInverseBackground);
|
||||
// Typography =================================================================
|
||||
|
||||
// Tables =====================================================================
|
||||
|
||||
// Forms ======================================================================
|
||||
|
||||
// Navs =======================================================================
|
||||
|
||||
// Indicators =================================================================
|
||||
|
||||
// Progress bars ==============================================================
|
||||
|
||||
// Containers =================================================================
|
||||
|
||||
.panel-primary,
|
||||
.panel-success,
|
||||
.panel-warning,
|
||||
.panel-danger,
|
||||
.panel-info {
|
||||
|
||||
.panel-heading,
|
||||
.panel-title {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
// TABLES
|
||||
// -----------------------------------------------------
|
||||
|
||||
// FORMS
|
||||
// -----------------------------------------------------
|
||||
|
||||
// DROPDOWNS
|
||||
// -----------------------------------------------------
|
||||
|
||||
// ALERTS, LABELS, BADGES
|
||||
// -----------------------------------------------------
|
||||
|
||||
// MISC
|
||||
// -----------------------------------------------------
|
||||
|
||||
i[class^="icon-"]{
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
// MEDIA QUERIES
|
||||
// -----------------------------------------------------
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user