Skip to content
This repository has been archived by the owner on Jan 8, 2023. It is now read-only.

Commit

Permalink
United to 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
esbanarango committed May 24, 2015
1 parent 4c4f870 commit 8c9b81d
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 42 deletions.
16 changes: 15 additions & 1 deletion vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// United 3.2.0
// United 3.3.4
// Bootswatch
// -----------------------------------------------------

Expand All @@ -22,6 +22,20 @@
}
}


@media (max-width: $grid-float-breakpoint-max) {

.navbar {

.dropdown-menu {
a {
color: #fff;
}
}
}
}


// Buttons ====================================================================

// Typography =================================================================
Expand Down
99 changes: 58 additions & 41 deletions vendor/assets/stylesheets/bootswatch/united/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// United 3.2.0
// United 3.3.4
// Variables
// --------------------------------------------------

Expand All @@ -7,11 +7,12 @@
//
//## Gray and brand colors for use across Bootstrap.

$gray: #777 !default; // #555
$gray-darker: lighten(#000, 13.5%) !default; // #222
$gray-base: #000 !default;
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
$gray-dark: #333 !default; // #333
$gray: #777 !default; // #555
$gray-light: #AEA79F !default; // #999
$gray-lighter: lighten(#000, 93.5%) !default; // #eee
$gray-lighter: lighten($gray-base, 93.5%) !default; // #eee

$brand-primary: #DD4814 !default;
$brand-success: #38B44A !default;
Expand All @@ -33,6 +34,8 @@ $text-color: $gray-dark !default;
$link-color: $brand-primary !default;
//** Link hover color set via `darken()` function.
$link-hover-color: darken($link-color, 15%) !default;
//** Link hover decoration.
$link-hover-decoration: underline !default;


//== Typography
Expand Down Expand Up @@ -95,7 +98,7 @@ $padding-small-horizontal: 10px !default;
$padding-xs-vertical: 1px !default;
$padding-xs-horizontal: 5px !default;

$line-height-large: 1.33 !default;
$line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
$line-height-small: 1.5 !default;

$border-radius-base: 4px !default;
Expand Down Expand Up @@ -180,8 +183,16 @@ $input-bg-disabled: $gray-lighter !default;
$input-color: $text-color !default;
//** `<input>` border color
$input-border: #ccc !default;
//** `<input>` border radius

// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
//** Default `.form-control` border radius
// This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
$input-border-radius: $border-radius-base !default;
//** Large `.form-control` border radius
$input-border-radius-large: $border-radius-large !default;
//** Small `.form-control` border radius
$input-border-radius-small: $border-radius-small !default;

//** Border color for inputs on focus
$input-border-focus: #66afe9 !default;

Expand All @@ -195,6 +206,9 @@ $input-height-large: (ceil($font-size-large * $line-height-large) +
//** Small `.form-control` height
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;

//** `.form-group` margin
$form-group-margin-bottom: 15px !default;

$legend-color: $text-color !default;
$legend-border-color: #e5e5e5 !default;

Expand All @@ -203,30 +217,9 @@ $input-group-addon-bg: $gray-lighter !default;
//** Border color for textual input addons
$input-group-addon-border-color: $input-border !default;

//== Type
//
//##
//** Disabled cursor for form controls and buttons.
$cursor-disabled: not-allowed !default;

//** Horizontal offset for forms and lists.
$component-offset-horizontal: 180px !default;
//** Text muted color
$text-muted: $gray-light !default;
//** Abbreviations and acronyms border color
$abbr-border-color: $gray-light !default;
//** Headings small color
$headings-small-color: $gray-light !default;
//** Blockquote small color
$blockquote-small-color: $gray-light !default;
//** Blockquote font size
$blockquote-font-size: ($font-size-base * 1.25) !default;
//** Blockquote border color
$blockquote-border-color: $gray-lighter !default;
//** Page header border color
$page-header-border-color: $gray-lighter !default;
//** Width of horizontal description list titles
$dl-horizontal-offset: $component-offset-horizontal !default;
//** Horizontal line color.
$hr-border: $gray-lighter !default;

//== Dropdowns
//
Expand All @@ -241,23 +234,23 @@ $dropdown-fallback-border: #ccc !default;
//** Divider color for between dropdown items.
$dropdown-divider-bg: #e5e5e5 !default;

//** Active dropdown menu item background color.
$dropdown-link-active-bg: $component-active-bg !default;
//** Dropdown link text color.
$dropdown-link-color: $gray-dark !default;
//** Hover color for dropdown links.
$dropdown-link-hover-color: #fff !default;
//** Hover background for dropdown links.
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
$dropdown-link-hover-bg: $component-active-bg !default;

//** Active dropdown menu item text color.
$dropdown-link-active-color: #fff !default;
//** Active dropdown menu item background color.
$dropdown-link-active-bg: $component-active-bg !default;

//** Disabled dropdown menu item background color.
$dropdown-link-disabled-color: $text-muted !default;
$dropdown-link-disabled-color: $gray-light !default;

//** Text color for headers within dropdown menus.
$dropdown-header-color: $text-muted !default;
$dropdown-header-color: $gray-light !default;

//** Deprecated `@dropdown-caret-color` as of v3.1.0
$dropdown-caret-color: #000 !default;
Expand Down Expand Up @@ -338,17 +331,17 @@ $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
//## Define the maximum width of `.container` for different screen sizes.

// Small screen / tablet
$container-tablet: ((720px + $grid-gutter-width)) !default;
$container-tablet: (720px + $grid-gutter-width) !default;
//** For `@screen-sm-min` and up.
$container-sm: $container-tablet !default;

// Medium screen / desktop
$container-desktop: ((940px + $grid-gutter-width)) !default;
$container-desktop: (940px + $grid-gutter-width) !default;
//** For `@screen-md-min` and up.
$container-md: $container-desktop !default;

// Large screen / wide desktop
$container-large-desktop: ((1140px + $grid-gutter-width)) !default;
$container-large-desktop: (1140px + $grid-gutter-width) !default;
//** For `@screen-lg-min` and up.
$container-lg: $container-large-desktop !default;

Expand Down Expand Up @@ -426,8 +419,6 @@ $nav-link-hover-bg: $gray-lighter !default;
$nav-disabled-link-color: $gray-light !default;
$nav-disabled-link-hover-color: $gray-light !default;

$nav-open-link-hover-color: #fff !default;

//== Tabs
$nav-tabs-border-color: #ddd !default;

Expand Down Expand Up @@ -524,7 +515,7 @@ $tooltip-max-width: 200px !default;
//** Tooltip text color
$tooltip-color: #fff !default;
//** Tooltip background color
$tooltip-bg: rgba(0,0,0,.9) !default;
$tooltip-bg: #000 !default;
$tooltip-opacity: .9 !default;

//** Tooltip arrow width
Expand Down Expand Up @@ -552,7 +543,7 @@ $popover-title-bg: darken($popover-bg, 3%) !default;
//** Popover arrow width
$popover-arrow-width: 10px !default;
//** Popover arrow color
$popover-arrow-color: #fff !default;
$popover-arrow-color: $popover-bg !default;

//** Popover outer arrow width
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
Expand Down Expand Up @@ -651,6 +642,8 @@ $alert-danger-border: $state-danger-border !default;
$progress-bg: #f5f5f5 !default;
//** Progress bar text color
$progress-bar-color: #fff !default;
//** Variable for setting rounded corners on progress bar.
$progress-border-radius: $border-radius-base !default;

//** Default progress bar color
$progress-bar-bg: $brand-primary !default;
Expand Down Expand Up @@ -841,3 +834,27 @@ $pre-border-color: #ccc !default;
$pre-scrollable-max-height: 340px !default;


//== Type
//
//##

//** Horizontal offset for forms and lists.
$component-offset-horizontal: 180px !default;
//** Text muted color
$text-muted: $gray-light !default;
//** Abbreviations and acronyms border color
$abbr-border-color: $gray-light !default;
//** Headings small color
$headings-small-color: $gray-light !default;
//** Blockquote small color
$blockquote-small-color: $gray-light !default;
//** Blockquote font size
$blockquote-font-size: ($font-size-base * 1.25) !default;
//** Blockquote border color
$blockquote-border-color: $gray-lighter !default;
//** Page header border color
$page-header-border-color: $gray-lighter !default;
//** Width of horizontal description list titles
$dl-horizontal-offset: $component-offset-horizontal !default;
//** Horizontal line color.
$hr-border: $gray-lighter !default;

0 comments on commit 8c9b81d

Please sign in to comment.