From e28ad72653436b873ccb5e1cb11ca6af5f8f632b Mon Sep 17 00:00:00 2001 From: Connor Sears Date: Sat, 20 Feb 2016 13:37:26 -0800 Subject: [PATCH 01/22] set up a simple theme system --- Gruntfile.js | 4 ++++ dist/css/photon-theme-osx.css | 10 ++++++++++ dist/template-app/index.html | 1 + docs/dist/css/photon-theme-osx.css | 10 ++++++++++ docs/dist/template-app/index.html | 1 + sass/theme-osx.scss | 1 + 6 files changed, 27 insertions(+) create mode 100644 dist/css/photon-theme-osx.css create mode 100644 docs/dist/css/photon-theme-osx.css create mode 100644 sass/theme-osx.scss diff --git a/Gruntfile.js b/Gruntfile.js index d06abc7..406effc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -47,6 +47,10 @@ module.exports = function(grunt) { src: 'sass/photon.scss', dest: '<%= meta.distPath %>css/<%= pkg.name %>.css' }, + osx: { + src: 'sass/theme-osx.scss', + dest: '<%= meta.distPath %>css/<%= pkg.name %>-theme-osx.css' + }, docs: { src: 'sass/docs.scss', dest: '<%= meta.docsAssetsPath %>css/docs.css' diff --git a/dist/css/photon-theme-osx.css b/dist/css/photon-theme-osx.css new file mode 100644 index 0000000..b634aea --- /dev/null +++ b/dist/css/photon-theme-osx.css @@ -0,0 +1,10 @@ +/*! + * ===================================================== + * Photon v0.1.2 + * Copyright 2016 Connor Sears + * Licensed under MIT (https://github.com/connors/proton/blob/master/LICENSE) + * + * v0.1.2 designed by @connors. + * ===================================================== + */ + diff --git a/dist/template-app/index.html b/dist/template-app/index.html index e7bd8e0..0d99f4c 100644 --- a/dist/template-app/index.html +++ b/dist/template-app/index.html @@ -5,6 +5,7 @@ + diff --git a/docs/dist/css/photon-theme-osx.css b/docs/dist/css/photon-theme-osx.css new file mode 100644 index 0000000..b634aea --- /dev/null +++ b/docs/dist/css/photon-theme-osx.css @@ -0,0 +1,10 @@ +/*! + * ===================================================== + * Photon v0.1.2 + * Copyright 2016 Connor Sears + * Licensed under MIT (https://github.com/connors/proton/blob/master/LICENSE) + * + * v0.1.2 designed by @connors. + * ===================================================== + */ + diff --git a/docs/dist/template-app/index.html b/docs/dist/template-app/index.html index e7bd8e0..0d99f4c 100644 --- a/docs/dist/template-app/index.html +++ b/docs/dist/template-app/index.html @@ -5,6 +5,7 @@ + diff --git a/sass/theme-osx.scss b/sass/theme-osx.scss new file mode 100644 index 0000000..450a005 --- /dev/null +++ b/sass/theme-osx.scss @@ -0,0 +1 @@ +// OSX theme styles From 594469540279f3c6cc3db6aae5a4d78606831877 Mon Sep 17 00:00:00 2001 From: Connor Sears Date: Sat, 20 Feb 2016 13:45:46 -0800 Subject: [PATCH 02/22] adding bar styles --- dist/css/photon-theme-osx.css | 21 +++++++++ dist/css/photon.css | 13 ------ docs/dist/css/photon-theme-osx.css | 21 +++++++++ docs/dist/css/photon.css | 13 ------ sass/bars.scss | 11 ----- sass/theme-osx.scss | 75 ++++++++++++++++++++++++++++++ 6 files changed, 117 insertions(+), 37 deletions(-) diff --git a/dist/css/photon-theme-osx.css b/dist/css/photon-theme-osx.css index b634aea..e4f1411 100644 --- a/dist/css/photon-theme-osx.css +++ b/dist/css/photon-theme-osx.css @@ -8,3 +8,24 @@ * ===================================================== */ +.toolbar { + box-shadow: inset 0 1px 0 #f5f4f5; + background-color: #e8e6e8; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e6e8), color-stop(100%, #d1cfd1)); + background-image: -webkit-linear-gradient(top, #e8e6e8 0%, #d1cfd1 100%); + background-image: linear-gradient(to bottom, #e8e6e8 0%, #d1cfd1 100%); +} + +.toolbar-header { + border-bottom: 1px solid #c2c0c2; +} + +.toolbar-footer { + border-top: 1px solid #c2c0c2; +} + +.title { + font-weight: 400; + text-align: center; + color: #555; +} diff --git a/dist/css/photon.css b/dist/css/photon.css index b278c2c..3ca0352 100644 --- a/dist/css/photon.css +++ b/dist/css/photon.css @@ -523,11 +523,6 @@ h6 { .toolbar { min-height: 22px; - box-shadow: inset 0 1px 0 #f5f4f5; - background-color: #e8e6e8; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e6e8), color-stop(100%, #d1cfd1)); - background-image: -webkit-linear-gradient(top, #e8e6e8 0%, #d1cfd1 100%); - background-image: linear-gradient(to bottom, #e8e6e8 0%, #d1cfd1 100%); } .toolbar:before, .toolbar:after { display: table; @@ -552,17 +547,9 @@ h6 { .title { margin: 0; font-size: 12px; - font-weight: 400; - text-align: center; - color: #555; cursor: default; } -.toolbar-borderless { - border-top: 0; - border-bottom: 0; -} - .toolbar-actions { margin-top: 4px; margin-bottom: 3px; diff --git a/docs/dist/css/photon-theme-osx.css b/docs/dist/css/photon-theme-osx.css index b634aea..e4f1411 100644 --- a/docs/dist/css/photon-theme-osx.css +++ b/docs/dist/css/photon-theme-osx.css @@ -8,3 +8,24 @@ * ===================================================== */ +.toolbar { + box-shadow: inset 0 1px 0 #f5f4f5; + background-color: #e8e6e8; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e6e8), color-stop(100%, #d1cfd1)); + background-image: -webkit-linear-gradient(top, #e8e6e8 0%, #d1cfd1 100%); + background-image: linear-gradient(to bottom, #e8e6e8 0%, #d1cfd1 100%); +} + +.toolbar-header { + border-bottom: 1px solid #c2c0c2; +} + +.toolbar-footer { + border-top: 1px solid #c2c0c2; +} + +.title { + font-weight: 400; + text-align: center; + color: #555; +} diff --git a/docs/dist/css/photon.css b/docs/dist/css/photon.css index b278c2c..3ca0352 100644 --- a/docs/dist/css/photon.css +++ b/docs/dist/css/photon.css @@ -523,11 +523,6 @@ h6 { .toolbar { min-height: 22px; - box-shadow: inset 0 1px 0 #f5f4f5; - background-color: #e8e6e8; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e6e8), color-stop(100%, #d1cfd1)); - background-image: -webkit-linear-gradient(top, #e8e6e8 0%, #d1cfd1 100%); - background-image: linear-gradient(to bottom, #e8e6e8 0%, #d1cfd1 100%); } .toolbar:before, .toolbar:after { display: table; @@ -552,17 +547,9 @@ h6 { .title { margin: 0; font-size: 12px; - font-weight: 400; - text-align: center; - color: #555; cursor: default; } -.toolbar-borderless { - border-top: 0; - border-bottom: 0; -} - .toolbar-actions { margin-top: 4px; margin-bottom: 3px; diff --git a/sass/bars.scss b/sass/bars.scss index 88eaaa8..2171116 100644 --- a/sass/bars.scss +++ b/sass/bars.scss @@ -4,8 +4,6 @@ .toolbar { min-height: 22px; - box-shadow: inset 0 1px 0 #f5f4f5; - @include linear-gradient(#e8e6e8, #d1cfd1); @include clearfix; } @@ -26,18 +24,9 @@ .title { margin: 0; font-size: 12px; - font-weight: 400; - text-align: center; - color: #555; cursor: default; } -// Borderless toolbar for the clean look -.toolbar-borderless { - border-top: 0; - border-bottom: 0; -} - // Buttons in toolbars .toolbar-actions { margin-top: 4px; diff --git a/sass/theme-osx.scss b/sass/theme-osx.scss index 450a005..1fdd4ee 100644 --- a/sass/theme-osx.scss +++ b/sass/theme-osx.scss @@ -1 +1,76 @@ +@import "mixins.scss"; + +// // OSX theme styles +// Visuals and interactions in the style of OS X +// -------------------------------------------------- + +// Variables +// -------------------------------------------------- + +// Type + +$font-path: '../fonts/' !default; +// Try to use the system's font on whatever platform the user is on. +$font-family-default: system, -apple-system, ".SFNSDisplay-Regular", "Helvetica Neue", Helvetica, "Segoe UI", sans-serif !default; +$font-size-default: 13px !default; +$font-weight: 500 !default; +$font-weight-bold: 700 !default; +$font-weight-light: 300 !default; +$line-height-default: 1.6 !default; + + +// Colors + +// Main colors +$primary-color: #3b99fc !default; +$chrome-color: #fff !default; + +// Copy +$gray-color: #333 !default; + +// Borders +$border-color: #ddd !default; +$dark-border-color: #c2c0c2 !default; +$darker-bottom-border-color: #a19fa1 !default; +$toolbar-border-color: #939293 !default; + +// Action colors +$default-color: #fff !default; +$positive-color: #34c84a !default; +$negative-color: #fc605b !default; +$warning-color: #fdbc40 !default; + +// Shades +$dark-color: #57acf5 !default; + +// Focus and active colors +$active-color: #116cd6; +$focus-input-color: lighten($primary-color, 10%) !default; + +// Border radius +$default-border-radius: 4px; + + +// Bars +// -------------------------------------------------- + +.toolbar { + box-shadow: inset 0 1px 0 #f5f4f5; + @include linear-gradient(#e8e6e8, #d1cfd1); +} + +.toolbar-header { + border-bottom: 1px solid $dark-border-color; +} + +.toolbar-footer { + border-top: 1px solid $dark-border-color; +} + +// Simple centered title to go in the toolbar +.title { + font-weight: 400; + text-align: center; + color: #555; +} From 7c230ca7905f5890e01dfcd30463d95c1fd924bc Mon Sep 17 00:00:00 2001 From: Connor Sears Date: Sat, 20 Feb 2016 13:52:37 -0800 Subject: [PATCH 03/22] buttons and button groups --- dist/css/photon-theme-osx.css | 103 +++++++++++++++++++++++++++++ dist/css/photon.css | 14 ++-- docs/dist/css/photon-theme-osx.css | 103 +++++++++++++++++++++++++++++ docs/dist/css/photon.css | 14 ++-- sass/button-groups.scss | 2 +- sass/buttons.scss | 9 +-- sass/theme-osx.scss | 100 ++++++++++++++++++++++++++++ 7 files changed, 318 insertions(+), 27 deletions(-) diff --git a/dist/css/photon-theme-osx.css b/dist/css/photon-theme-osx.css index e4f1411..386c1ae 100644 --- a/dist/css/photon-theme-osx.css +++ b/dist/css/photon-theme-osx.css @@ -29,3 +29,106 @@ text-align: center; color: #555; } + +.btn { + border-radius: 4px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06); +} + +.btn-group .btn + .btn { + border-left: 1px solid #c2c0c2; +} +.btn-group .active { + color: #fff; + background-color: #6d6c6d; +} +.btn-group .active .icon { + color: #fff; +} + +.btn-default { + color: #333; + border-top-color: #c2c0c2; + border-right-color: #c2c0c2; + border-bottom-color: #a19fa1; + border-left-color: #c2c0c2; + background-color: #fcfcfc; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f1f1f1)); + background-image: -webkit-linear-gradient(top, #fcfcfc 0%, #f1f1f1 100%); + background-image: linear-gradient(to bottom, #fcfcfc 0%, #f1f1f1 100%); +} +.btn-default:active { + background-color: #ddd; + background-image: none; +} + +.btn-primary, +.btn-positive, +.btn-negative, +.btn-warning { + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); +} + +.btn-primary { + border-color: #388df8; + border-bottom-color: #0866dc; + background-color: #6eb4f7; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6eb4f7), color-stop(100%, #1a82fb)); + background-image: -webkit-linear-gradient(top, #6eb4f7 0%, #1a82fb 100%); + background-image: linear-gradient(to bottom, #6eb4f7 0%, #1a82fb 100%); +} +.btn-primary:active { + background-color: #3e9bf4; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e9bf4), color-stop(100%, #0469de)); + background-image: -webkit-linear-gradient(top, #3e9bf4 0%, #0469de 100%); + background-image: linear-gradient(to bottom, #3e9bf4 0%, #0469de 100%); +} + +.btn-positive { + border-color: #29a03b; + border-bottom-color: #248b34; + background-color: #5bd46d; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bd46d), color-stop(100%, #29a03b)); + background-image: -webkit-linear-gradient(top, #5bd46d 0%, #29a03b 100%); + background-image: linear-gradient(to bottom, #5bd46d 0%, #29a03b 100%); +} +.btn-positive:active { + background-color: #34c84a; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #34c84a), color-stop(100%, #248b34)); + background-image: -webkit-linear-gradient(top, #34c84a 0%, #248b34 100%); + background-image: linear-gradient(to bottom, #34c84a 0%, #248b34 100%); +} + +.btn-negative { + border-color: #fb2f29; + border-bottom-color: #fb1710; + background-color: #fd918d; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd918d), color-stop(100%, #fb2f29)); + background-image: -webkit-linear-gradient(top, #fd918d 0%, #fb2f29 100%); + background-image: linear-gradient(to bottom, #fd918d 0%, #fb2f29 100%); +} +.btn-negative:active { + background-color: #fc605b; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc605b), color-stop(100%, #fb1710)); + background-image: -webkit-linear-gradient(top, #fc605b 0%, #fb1710 100%); + background-image: linear-gradient(to bottom, #fc605b 0%, #fb1710 100%); +} + +.btn-warning { + border-color: #fcaa0e; + border-bottom-color: #ee9d02; + background-color: #fece72; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fece72), color-stop(100%, #fcaa0e)); + background-image: -webkit-linear-gradient(top, #fece72 0%, #fcaa0e 100%); + background-image: linear-gradient(to bottom, #fece72 0%, #fcaa0e 100%); +} +.btn-warning:active { + background-color: #fdbc40; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdbc40), color-stop(100%, #ee9d02)); + background-image: -webkit-linear-gradient(top, #fdbc40 0%, #ee9d02 100%); + background-image: linear-gradient(to bottom, #fdbc40 0%, #ee9d02 100%); +} + +.btn .icon { + color: #737475; +} diff --git a/dist/css/photon.css b/dist/css/photon.css index 3ca0352..d2f44f8 100644 --- a/dist/css/photon.css +++ b/dist/css/photon.css @@ -345,7 +345,7 @@ h6 { background-image: none; border: 1px solid transparent; border-radius: 4px; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); -webkit-app-region: no-drag; } .btn:focus { @@ -372,14 +372,9 @@ h6 { border-right-color: #c2c0c2; border-bottom-color: #a19fa1; border-left-color: #c2c0c2; - background-color: #fcfcfc; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f1f1f1)); - background-image: -webkit-linear-gradient(top, #fcfcfc 0%, #f1f1f1 100%); - background-image: linear-gradient(to bottom, #fcfcfc 0%, #f1f1f1 100%); } .btn-default:active { - background-color: #ddd; - background-image: none; + background-color: #ccc; } .btn-primary, @@ -387,7 +382,6 @@ h6 { .btn-negative, .btn-warning { color: #fff; - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); } .btn-primary { @@ -456,7 +450,7 @@ h6 { height: 14px; margin-top: 1px; margin-bottom: 1px; - color: #737475; + color: #888; font-size: 14px; line-height: 1; } @@ -514,7 +508,7 @@ h6 { .btn-group .active { color: #fff; border: 1px solid transparent; - background-color: #6d6c6d; + background-color: #777; background-image: none; } .btn-group .active .icon { diff --git a/docs/dist/css/photon-theme-osx.css b/docs/dist/css/photon-theme-osx.css index e4f1411..386c1ae 100644 --- a/docs/dist/css/photon-theme-osx.css +++ b/docs/dist/css/photon-theme-osx.css @@ -29,3 +29,106 @@ text-align: center; color: #555; } + +.btn { + border-radius: 4px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06); +} + +.btn-group .btn + .btn { + border-left: 1px solid #c2c0c2; +} +.btn-group .active { + color: #fff; + background-color: #6d6c6d; +} +.btn-group .active .icon { + color: #fff; +} + +.btn-default { + color: #333; + border-top-color: #c2c0c2; + border-right-color: #c2c0c2; + border-bottom-color: #a19fa1; + border-left-color: #c2c0c2; + background-color: #fcfcfc; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f1f1f1)); + background-image: -webkit-linear-gradient(top, #fcfcfc 0%, #f1f1f1 100%); + background-image: linear-gradient(to bottom, #fcfcfc 0%, #f1f1f1 100%); +} +.btn-default:active { + background-color: #ddd; + background-image: none; +} + +.btn-primary, +.btn-positive, +.btn-negative, +.btn-warning { + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); +} + +.btn-primary { + border-color: #388df8; + border-bottom-color: #0866dc; + background-color: #6eb4f7; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6eb4f7), color-stop(100%, #1a82fb)); + background-image: -webkit-linear-gradient(top, #6eb4f7 0%, #1a82fb 100%); + background-image: linear-gradient(to bottom, #6eb4f7 0%, #1a82fb 100%); +} +.btn-primary:active { + background-color: #3e9bf4; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e9bf4), color-stop(100%, #0469de)); + background-image: -webkit-linear-gradient(top, #3e9bf4 0%, #0469de 100%); + background-image: linear-gradient(to bottom, #3e9bf4 0%, #0469de 100%); +} + +.btn-positive { + border-color: #29a03b; + border-bottom-color: #248b34; + background-color: #5bd46d; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bd46d), color-stop(100%, #29a03b)); + background-image: -webkit-linear-gradient(top, #5bd46d 0%, #29a03b 100%); + background-image: linear-gradient(to bottom, #5bd46d 0%, #29a03b 100%); +} +.btn-positive:active { + background-color: #34c84a; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #34c84a), color-stop(100%, #248b34)); + background-image: -webkit-linear-gradient(top, #34c84a 0%, #248b34 100%); + background-image: linear-gradient(to bottom, #34c84a 0%, #248b34 100%); +} + +.btn-negative { + border-color: #fb2f29; + border-bottom-color: #fb1710; + background-color: #fd918d; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd918d), color-stop(100%, #fb2f29)); + background-image: -webkit-linear-gradient(top, #fd918d 0%, #fb2f29 100%); + background-image: linear-gradient(to bottom, #fd918d 0%, #fb2f29 100%); +} +.btn-negative:active { + background-color: #fc605b; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc605b), color-stop(100%, #fb1710)); + background-image: -webkit-linear-gradient(top, #fc605b 0%, #fb1710 100%); + background-image: linear-gradient(to bottom, #fc605b 0%, #fb1710 100%); +} + +.btn-warning { + border-color: #fcaa0e; + border-bottom-color: #ee9d02; + background-color: #fece72; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fece72), color-stop(100%, #fcaa0e)); + background-image: -webkit-linear-gradient(top, #fece72 0%, #fcaa0e 100%); + background-image: linear-gradient(to bottom, #fece72 0%, #fcaa0e 100%); +} +.btn-warning:active { + background-color: #fdbc40; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdbc40), color-stop(100%, #ee9d02)); + background-image: -webkit-linear-gradient(top, #fdbc40 0%, #ee9d02 100%); + background-image: linear-gradient(to bottom, #fdbc40 0%, #ee9d02 100%); +} + +.btn .icon { + color: #737475; +} diff --git a/docs/dist/css/photon.css b/docs/dist/css/photon.css index 3ca0352..d2f44f8 100644 --- a/docs/dist/css/photon.css +++ b/docs/dist/css/photon.css @@ -345,7 +345,7 @@ h6 { background-image: none; border: 1px solid transparent; border-radius: 4px; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); -webkit-app-region: no-drag; } .btn:focus { @@ -372,14 +372,9 @@ h6 { border-right-color: #c2c0c2; border-bottom-color: #a19fa1; border-left-color: #c2c0c2; - background-color: #fcfcfc; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f1f1f1)); - background-image: -webkit-linear-gradient(top, #fcfcfc 0%, #f1f1f1 100%); - background-image: linear-gradient(to bottom, #fcfcfc 0%, #f1f1f1 100%); } .btn-default:active { - background-color: #ddd; - background-image: none; + background-color: #ccc; } .btn-primary, @@ -387,7 +382,6 @@ h6 { .btn-negative, .btn-warning { color: #fff; - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); } .btn-primary { @@ -456,7 +450,7 @@ h6 { height: 14px; margin-top: 1px; margin-bottom: 1px; - color: #737475; + color: #888; font-size: 14px; line-height: 1; } @@ -514,7 +508,7 @@ h6 { .btn-group .active { color: #fff; border: 1px solid transparent; - background-color: #6d6c6d; + background-color: #777; background-image: none; } .btn-group .active .icon { diff --git a/sass/button-groups.scss b/sass/button-groups.scss index 4cfb970..51dd5b9 100644 --- a/sass/button-groups.scss +++ b/sass/button-groups.scss @@ -61,7 +61,7 @@ .active { color: #fff; border: 1px solid transparent; - background-color: #6d6c6d; + background-color: #777; background-image: none; } diff --git a/sass/buttons.scss b/sass/buttons.scss index fa10156..b539c11 100644 --- a/sass/buttons.scss +++ b/sass/buttons.scss @@ -15,7 +15,7 @@ background-image: none; border: 1px solid transparent; border-radius: $default-border-radius; - box-shadow: 0 1px 1px rgba(0,0,0,.06); + box-shadow: 0 1px 1px rgba(0,0,0,.1); -webkit-app-region: no-drag; &:focus { @@ -44,11 +44,9 @@ border-right-color: $dark-border-color; border-bottom-color: $darker-bottom-border-color; border-left-color: $dark-border-color; - @include linear-gradient(#fcfcfc, #f1f1f1); &:active { - background-color: #ddd; - background-image: none; + background-color: #ccc; } } @@ -58,7 +56,6 @@ .btn-negative, .btn-warning { color: #fff; - text-shadow: 0 1px 1px rgba(0,0,0,.1); } // For primary buttons @@ -112,7 +109,7 @@ height: 14px; margin-top: 1px; margin-bottom: 1px; - color: #737475; + color: #888; font-size: 14px; line-height: 1; } diff --git a/sass/theme-osx.scss b/sass/theme-osx.scss index 1fdd4ee..0fca96d 100644 --- a/sass/theme-osx.scss +++ b/sass/theme-osx.scss @@ -74,3 +74,103 @@ $default-border-radius: 4px; text-align: center; color: #555; } + +// Buttons.css +// -------------------------------------------------- + +.btn { + border-radius: $default-border-radius; + box-shadow: 0 1px 1px rgba(0,0,0,.06); +} + +// Button groups +// -------------------------------------------------- + +.btn-group { + .btn + .btn { + border-left: 1px solid $dark-border-color; + } + + // Selected state + .active { + color: #fff; + background-color: #6d6c6d; + } + + // Invert the icon in the active button + .active .icon { + color: #fff; + } +} + +// Normal buttons +.btn-default { + color: $gray-color; + border-top-color: $dark-border-color; + border-right-color: $dark-border-color; + border-bottom-color: $darker-bottom-border-color; + border-left-color: $dark-border-color; + @include linear-gradient(#fcfcfc, #f1f1f1); + + &:active { + background-color: #ddd; + background-image: none; + } +} + +// Button variations +.btn-primary, +.btn-positive, +.btn-negative, +.btn-warning { + text-shadow: 0 1px 1px rgba(0,0,0,.1); +} + +// For primary buttons +.btn-primary { + border-color: #388df8; + border-bottom-color: darken(#388df8, 15%); + @include linear-gradient(#6eb4f7, #1a82fb); + + &:active { + @include linear-gradient(darken(#6eb4f7, 10%), darken(#1a82fb, 10%)); + } +} + +// For positive buttons +.btn-positive { + border-color: darken($positive-color, 10%); + border-bottom-color: darken($positive-color, 15%); + @include linear-gradient(lighten($positive-color, 10%), darken($positive-color, 10%)); + + &:active { + @include linear-gradient($positive-color, darken($positive-color, 15%)); + } +} + +// For negative actions +.btn-negative { + border-color: darken($negative-color, 10%); + border-bottom-color: darken($negative-color, 15%); + @include linear-gradient(lighten($negative-color, 10%), darken($negative-color, 10%)); + + &:active { + @include linear-gradient($negative-color, darken($negative-color, 15%)); + } +} + +// For warning actions +.btn-warning { + border-color: darken($warning-color, 10%); + border-bottom-color: darken($warning-color, 15%); + @include linear-gradient(lighten($warning-color, 10%), darken($warning-color, 10%)); + + &:active { + @include linear-gradient($warning-color, darken($warning-color, 15%)); + } +} + +// Icons in buttons +.btn .icon { + color: #737475; +} From 59e9635c137bd3a2fc0b5aac59e8453a7568741a Mon Sep 17 00:00:00 2001 From: Connor Sears Date: Sat, 20 Feb 2016 13:59:00 -0800 Subject: [PATCH 04/22] moving over forms, images,lists, and navs --- dist/css/photon-theme-osx.css | 37 ++++++++++++++++++ dist/css/photon.css | 4 +- docs/dist/css/photon-theme-osx.css | 37 ++++++++++++++++++ docs/dist/css/photon.css | 4 +- sass/lists.scss | 4 +- sass/navs.scss | 2 +- sass/theme-osx.scss | 62 +++++++++++++++++++++++++++++- 7 files changed, 142 insertions(+), 8 deletions(-) diff --git a/dist/css/photon-theme-osx.css b/dist/css/photon-theme-osx.css index 386c1ae..0ec9a04 100644 --- a/dist/css/photon-theme-osx.css +++ b/dist/css/photon-theme-osx.css @@ -132,3 +132,40 @@ .btn .icon { color: #737475; } + +.form-control { + display: inline-block; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; +} +.form-control:focus { + border-color: #6db3fd; + box-shadow: 0 0 0 3px #6db3fd; +} + +.img-rounded { + border-radius: 4px; +} + +.list-group-item { + color: #414142; + border-top: 1px solid #ddd; +} +.list-group-item.active, .list-group-item.selected { + background-color: #116cd6; +} + +.nav-group-item { + color: #333; +} +.nav-group-item:active, .nav-group-item.active { + background-color: #dcdfe1; +} +.nav-group-item .icon { + color: #737475; +} + +.nav-group-title { + color: #666666; +} diff --git a/dist/css/photon.css b/dist/css/photon.css index d2f44f8..e40ea77 100644 --- a/dist/css/photon.css +++ b/dist/css/photon.css @@ -706,7 +706,7 @@ img { .list-group-item { padding: 10px; font-size: 12px; - color: #414142; + color: #555; border-top: 1px solid #ddd; } .list-group-item:first-child { @@ -757,7 +757,7 @@ img { width: 19px; height: 18px; float: left; - color: #737475; + color: #777; margin-top: -3px; margin-right: 7px; font-size: 18px; diff --git a/docs/dist/css/photon-theme-osx.css b/docs/dist/css/photon-theme-osx.css index 386c1ae..0ec9a04 100644 --- a/docs/dist/css/photon-theme-osx.css +++ b/docs/dist/css/photon-theme-osx.css @@ -132,3 +132,40 @@ .btn .icon { color: #737475; } + +.form-control { + display: inline-block; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; +} +.form-control:focus { + border-color: #6db3fd; + box-shadow: 0 0 0 3px #6db3fd; +} + +.img-rounded { + border-radius: 4px; +} + +.list-group-item { + color: #414142; + border-top: 1px solid #ddd; +} +.list-group-item.active, .list-group-item.selected { + background-color: #116cd6; +} + +.nav-group-item { + color: #333; +} +.nav-group-item:active, .nav-group-item.active { + background-color: #dcdfe1; +} +.nav-group-item .icon { + color: #737475; +} + +.nav-group-title { + color: #666666; +} diff --git a/docs/dist/css/photon.css b/docs/dist/css/photon.css index d2f44f8..e40ea77 100644 --- a/docs/dist/css/photon.css +++ b/docs/dist/css/photon.css @@ -706,7 +706,7 @@ img { .list-group-item { padding: 10px; font-size: 12px; - color: #414142; + color: #555; border-top: 1px solid #ddd; } .list-group-item:first-child { @@ -757,7 +757,7 @@ img { width: 19px; height: 18px; float: left; - color: #737475; + color: #777; margin-top: -3px; margin-right: 7px; font-size: 18px; diff --git a/sass/lists.scss b/sass/lists.scss index 5e5c16b..5898552 100644 --- a/sass/lists.scss +++ b/sass/lists.scss @@ -24,13 +24,13 @@ .list-group-item { padding: 10px; font-size: 12px; - color: #414142; + color: #555; border-top: 1px solid $border-color; &:first-child { border-top: 0; } - + &.active, // `.selected` is deprecated. Use `.active` instead. &.selected { diff --git a/sass/navs.scss b/sass/navs.scss index 67641e8..afc19fb 100644 --- a/sass/navs.scss +++ b/sass/navs.scss @@ -24,7 +24,7 @@ width: 19px; // Prevents a one pixel cutoff height: 18px; float: left; - color: #737475; + color: #777; margin-top: -3px; margin-right: 7px; font-size: 18px; diff --git a/sass/theme-osx.scss b/sass/theme-osx.scss index 0fca96d..c6dc1cc 100644 --- a/sass/theme-osx.scss +++ b/sass/theme-osx.scss @@ -75,7 +75,7 @@ $default-border-radius: 4px; color: #555; } -// Buttons.css +// Buttons // -------------------------------------------------- .btn { @@ -174,3 +174,63 @@ $default-border-radius: 4px; .btn .icon { color: #737475; } + + +// Forms +// -------------------------------------------------- + +.form-control { + display: inline-block; + background-color: $chrome-color; + border: 1px solid $border-color; + border-radius: $default-border-radius; + + &:focus { + border-color: $focus-input-color; + box-shadow: 0 0 0 3px $focus-input-color; + } +} + + +// Images +// -------------------------------------------------- + +.img-rounded { + border-radius: $default-border-radius; +} + + +// Lists +// -------------------------------------------------- + +.list-group-item { + color: #414142; + border-top: 1px solid $border-color; + + &.active, + // `.selected` is deprecated. Use `.active` instead. + &.selected { + background-color: $active-color; + } +} + + +// Navs +// -------------------------------------------------- + +.nav-group-item { + color: $gray-color; + + &:active, + &.active { + background-color: #dcdfe1; + } + + .icon { + color: #737475; + } +} + +.nav-group-title { + color: lighten($gray-color, 20%); +} From 409c1746dcea44d5ece7ef755b642d2b05b86c1b Mon Sep 17 00:00:00 2001 From: Connor Sears Date: Sat, 20 Feb 2016 14:03:58 -0800 Subject: [PATCH 05/22] tabs and tables --- dist/css/photon-theme-osx.css | 52 +++++++++++++++++++++++++++ dist/css/photon.css | 12 +++---- docs/dist/css/photon-theme-osx.css | 52 +++++++++++++++++++++++++++ docs/dist/css/photon.css | 12 +++---- sass/tables.scss | 8 ++--- sass/tabs.scss | 9 ++--- sass/theme-osx.scss | 58 ++++++++++++++++++++++++++++++ 7 files changed, 183 insertions(+), 20 deletions(-) diff --git a/dist/css/photon-theme-osx.css b/dist/css/photon-theme-osx.css index 0ec9a04..21c0d4c 100644 --- a/dist/css/photon-theme-osx.css +++ b/dist/css/photon-theme-osx.css @@ -169,3 +169,55 @@ .nav-group-title { color: #666666; } + +thead { + background-color: #f5f5f4; +} + +.table-striped tr:nth-child(even) { + background-color: #f5f5f4; +} + +tr:active, +.table-striped tr:active:nth-child(even) { + color: #fff; + background-color: #116cd6; +} + +thead tr:active { + color: #333; + background-color: #f5f5f4; +} + +th { + border-right: 1px solid #ddd; + border-bottom: 1px solid #ddd; +} + +.tab-group { + border-top: 1px solid #989698; + border-bottom: 1px solid #989698; +} + +.tab-item { + border-left: 1px solid #989698; + background-color: #b8b6b8; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0)); + background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%); + background-image: linear-gradient(to bottom, #b8b6b8 0%, #b0aeb0 100%); +} +.tab-item.active { + background-color: #d4d2d4; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d2d4), color-stop(100%, #cccacc)); + background-image: -webkit-linear-gradient(top, #d4d2d4 0%, #cccacc 100%); + background-image: linear-gradient(to bottom, #d4d2d4 0%, #cccacc 100%); +} +.tab-item .icon-close-tab { + color: #666; +} +.tab-item:after { + background-color: rgba(0, 0, 0, 0.08); +} +.tab-item .icon-close-tab:hover { + background-color: rgba(0, 0, 0, 0.08); +} diff --git a/dist/css/photon.css b/dist/css/photon.css index e40ea77..e572b20 100644 --- a/dist/css/photon.css +++ b/dist/css/photon.css @@ -2223,7 +2223,7 @@ table { } thead { - background-color: #f5f5f4; + background-color: #f6f6f6; } tbody { @@ -2231,7 +2231,7 @@ tbody { } .table-striped tr:nth-child(even) { - background-color: #f5f5f4; + background-color: #f6f6f6; } tr:active, @@ -2242,7 +2242,7 @@ tr:active, thead tr:active { color: #333; - background-color: #f5f5f4; + background-color: #f6f6f6; } th { @@ -2266,8 +2266,8 @@ td:last-child { .tab-group { margin-top: -1px; display: flex; - border-top: 1px solid #989698; - border-bottom: 1px solid #989698; + border-top: 1px solid #999; + border-bottom: 1px solid #999; } .tab-item { @@ -2276,7 +2276,7 @@ td:last-child { padding: 3px; font-size: 12px; text-align: center; - border-left: 1px solid #989698; + border-left: 1px solid #999; background-color: #b8b6b8; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0)); background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%); diff --git a/docs/dist/css/photon-theme-osx.css b/docs/dist/css/photon-theme-osx.css index 0ec9a04..21c0d4c 100644 --- a/docs/dist/css/photon-theme-osx.css +++ b/docs/dist/css/photon-theme-osx.css @@ -169,3 +169,55 @@ .nav-group-title { color: #666666; } + +thead { + background-color: #f5f5f4; +} + +.table-striped tr:nth-child(even) { + background-color: #f5f5f4; +} + +tr:active, +.table-striped tr:active:nth-child(even) { + color: #fff; + background-color: #116cd6; +} + +thead tr:active { + color: #333; + background-color: #f5f5f4; +} + +th { + border-right: 1px solid #ddd; + border-bottom: 1px solid #ddd; +} + +.tab-group { + border-top: 1px solid #989698; + border-bottom: 1px solid #989698; +} + +.tab-item { + border-left: 1px solid #989698; + background-color: #b8b6b8; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0)); + background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%); + background-image: linear-gradient(to bottom, #b8b6b8 0%, #b0aeb0 100%); +} +.tab-item.active { + background-color: #d4d2d4; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d2d4), color-stop(100%, #cccacc)); + background-image: -webkit-linear-gradient(top, #d4d2d4 0%, #cccacc 100%); + background-image: linear-gradient(to bottom, #d4d2d4 0%, #cccacc 100%); +} +.tab-item .icon-close-tab { + color: #666; +} +.tab-item:after { + background-color: rgba(0, 0, 0, 0.08); +} +.tab-item .icon-close-tab:hover { + background-color: rgba(0, 0, 0, 0.08); +} diff --git a/docs/dist/css/photon.css b/docs/dist/css/photon.css index e40ea77..e572b20 100644 --- a/docs/dist/css/photon.css +++ b/docs/dist/css/photon.css @@ -2223,7 +2223,7 @@ table { } thead { - background-color: #f5f5f4; + background-color: #f6f6f6; } tbody { @@ -2231,7 +2231,7 @@ tbody { } .table-striped tr:nth-child(even) { - background-color: #f5f5f4; + background-color: #f6f6f6; } tr:active, @@ -2242,7 +2242,7 @@ tr:active, thead tr:active { color: #333; - background-color: #f5f5f4; + background-color: #f6f6f6; } th { @@ -2266,8 +2266,8 @@ td:last-child { .tab-group { margin-top: -1px; display: flex; - border-top: 1px solid #989698; - border-bottom: 1px solid #989698; + border-top: 1px solid #999; + border-bottom: 1px solid #999; } .tab-item { @@ -2276,7 +2276,7 @@ td:last-child { padding: 3px; font-size: 12px; text-align: center; - border-left: 1px solid #989698; + border-left: 1px solid #999; background-color: #b8b6b8; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0)); background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%); diff --git a/sass/tables.scss b/sass/tables.scss index 8ac8088..469a5c4 100644 --- a/sass/tables.scss +++ b/sass/tables.scss @@ -1,5 +1,5 @@ // -// Navs.scss +// Tables.scss // -------------------------------------------------- table { @@ -11,7 +11,7 @@ table { } thead { - background-color: #f5f5f4; + background-color: #f6f6f6; } tbody { @@ -19,7 +19,7 @@ tbody { } .table-striped tr:nth-child(even) { - background-color: #f5f5f4; + background-color: #f6f6f6; } tr:active, @@ -30,7 +30,7 @@ tr:active, thead tr:active { color: $gray-color; - background-color: #f5f5f4; + background-color: #f6f6f6; } th { diff --git a/sass/tabs.scss b/sass/tabs.scss index e97e778..fdc286c 100644 --- a/sass/tabs.scss +++ b/sass/tabs.scss @@ -1,10 +1,11 @@ -// Tabs +// Tabs.scss +// -------------------------------------------------- .tab-group { margin-top: -1px; display: flex; - border-top: 1px solid #989698; - border-bottom: 1px solid #989698; + border-top: 1px solid #999; + border-bottom: 1px solid #999; } .tab-item { @@ -13,7 +14,7 @@ padding: 3px; font-size: 12px; text-align: center; - border-left: 1px solid #989698; + border-left: 1px solid #999; @include linear-gradient(#b8b6b8, #b0aeb0); &:first-child { diff --git a/sass/theme-osx.scss b/sass/theme-osx.scss index c6dc1cc..9f5bf01 100644 --- a/sass/theme-osx.scss +++ b/sass/theme-osx.scss @@ -234,3 +234,61 @@ $default-border-radius: 4px; .nav-group-title { color: lighten($gray-color, 20%); } + + +// Tables +// -------------------------------------------------- + +thead { + background-color: #f5f5f4; +} + +.table-striped tr:nth-child(even) { + background-color: #f5f5f4; +} + +tr:active, +.table-striped tr:active:nth-child(even) { + color: #fff; + background-color: $active-color; +} + +thead tr:active { + color: $gray-color; + background-color: #f5f5f4; +} + +th { + border-right: 1px solid $border-color; + border-bottom: 1px solid $border-color; +} + + +// Tabs +// -------------------------------------------------- + +.tab-group { + border-top: 1px solid #989698; + border-bottom: 1px solid #989698; +} + +.tab-item { + border-left: 1px solid #989698; + @include linear-gradient(#b8b6b8, #b0aeb0); + + &.active { + @include linear-gradient(#d4d2d4, #cccacc); + } + + .icon-close-tab { + color: #666; + } + + &:after { + background-color: rgba(0,0,0,.08); + } + + .icon-close-tab:hover { + background-color: rgba(0,0,0,.08); + } +} From 7adaff5edcaed5963789c20f206cbe8398493446 Mon Sep 17 00:00:00 2001 From: Connor Sears Date: Sat, 20 Feb 2016 14:11:05 -0800 Subject: [PATCH 06/22] some clean up --- dist/css/photon-theme-osx.css | 1 - dist/css/photon.css | 12 ++++-------- docs/dist/css/photon-theme-osx.css | 1 - docs/dist/css/photon.css | 12 ++++-------- sass/bars.scss | 1 + sass/buttons.scss | 1 + sass/tabs.scss | 4 ++-- sass/theme-osx.scss | 1 - 8 files changed, 12 insertions(+), 21 deletions(-) diff --git a/dist/css/photon-theme-osx.css b/dist/css/photon-theme-osx.css index 21c0d4c..42f61c0 100644 --- a/dist/css/photon-theme-osx.css +++ b/dist/css/photon-theme-osx.css @@ -26,7 +26,6 @@ .title { font-weight: 400; - text-align: center; color: #555; } diff --git a/dist/css/photon.css b/dist/css/photon.css index e572b20..ca695a2 100644 --- a/dist/css/photon.css +++ b/dist/css/photon.css @@ -372,6 +372,7 @@ h6 { border-right-color: #c2c0c2; border-bottom-color: #a19fa1; border-left-color: #c2c0c2; + background-color: #fafafa; } .btn-default:active { background-color: #ccc; @@ -541,6 +542,7 @@ h6 { .title { margin: 0; font-size: 12px; + text-align: center; cursor: default; } @@ -2277,19 +2279,13 @@ td:last-child { font-size: 12px; text-align: center; border-left: 1px solid #999; - background-color: #b8b6b8; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0)); - background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%); - background-image: linear-gradient(to bottom, #b8b6b8 0%, #b0aeb0 100%); + background-color: #fafafa; } .tab-item:first-child { border-left: 0; } .tab-item.active { - background-color: #d4d2d4; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d2d4), color-stop(100%, #cccacc)); - background-image: -webkit-linear-gradient(top, #d4d2d4 0%, #cccacc 100%); - background-image: linear-gradient(to bottom, #d4d2d4 0%, #cccacc 100%); + background-color: #ddd; } .tab-item .icon-close-tab { position: absolute; diff --git a/docs/dist/css/photon-theme-osx.css b/docs/dist/css/photon-theme-osx.css index 21c0d4c..42f61c0 100644 --- a/docs/dist/css/photon-theme-osx.css +++ b/docs/dist/css/photon-theme-osx.css @@ -26,7 +26,6 @@ .title { font-weight: 400; - text-align: center; color: #555; } diff --git a/docs/dist/css/photon.css b/docs/dist/css/photon.css index e572b20..ca695a2 100644 --- a/docs/dist/css/photon.css +++ b/docs/dist/css/photon.css @@ -372,6 +372,7 @@ h6 { border-right-color: #c2c0c2; border-bottom-color: #a19fa1; border-left-color: #c2c0c2; + background-color: #fafafa; } .btn-default:active { background-color: #ccc; @@ -541,6 +542,7 @@ h6 { .title { margin: 0; font-size: 12px; + text-align: center; cursor: default; } @@ -2277,19 +2279,13 @@ td:last-child { font-size: 12px; text-align: center; border-left: 1px solid #999; - background-color: #b8b6b8; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0)); - background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%); - background-image: linear-gradient(to bottom, #b8b6b8 0%, #b0aeb0 100%); + background-color: #fafafa; } .tab-item:first-child { border-left: 0; } .tab-item.active { - background-color: #d4d2d4; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d2d4), color-stop(100%, #cccacc)); - background-image: -webkit-linear-gradient(top, #d4d2d4 0%, #cccacc 100%); - background-image: linear-gradient(to bottom, #d4d2d4 0%, #cccacc 100%); + background-color: #ddd; } .tab-item .icon-close-tab { position: absolute; diff --git a/sass/bars.scss b/sass/bars.scss index 2171116..75d9af1 100644 --- a/sass/bars.scss +++ b/sass/bars.scss @@ -24,6 +24,7 @@ .title { margin: 0; font-size: 12px; + text-align: center; cursor: default; } diff --git a/sass/buttons.scss b/sass/buttons.scss index b539c11..e428a16 100644 --- a/sass/buttons.scss +++ b/sass/buttons.scss @@ -44,6 +44,7 @@ border-right-color: $dark-border-color; border-bottom-color: $darker-bottom-border-color; border-left-color: $dark-border-color; + background-color: #fafafa; &:active { background-color: #ccc; diff --git a/sass/tabs.scss b/sass/tabs.scss index fdc286c..836bf7b 100644 --- a/sass/tabs.scss +++ b/sass/tabs.scss @@ -15,14 +15,14 @@ font-size: 12px; text-align: center; border-left: 1px solid #999; - @include linear-gradient(#b8b6b8, #b0aeb0); + background-color: #fafafa; &:first-child { border-left: 0; } &.active { - @include linear-gradient(#d4d2d4, #cccacc); + background-color: #ddd; } .icon-close-tab { diff --git a/sass/theme-osx.scss b/sass/theme-osx.scss index 9f5bf01..ed1e94c 100644 --- a/sass/theme-osx.scss +++ b/sass/theme-osx.scss @@ -71,7 +71,6 @@ $default-border-radius: 4px; // Simple centered title to go in the toolbar .title { font-weight: 400; - text-align: center; color: #555; } From 3f4d1797a195c24ea0ca8b6a3f35466de79c23a1 Mon Sep 17 00:00:00 2001 From: Connor Sears Date: Sat, 20 Feb 2016 14:15:00 -0800 Subject: [PATCH 07/22] apply the osx theme --- docs/components/bars-actions.html | 3 +++ docs/components/bars-tabs.html | 3 +++ docs/components/bars.html | 3 +++ docs/components/basic-sidebar.html | 3 +++ docs/components/basic-window.html | 3 +++ docs/components/button-groups.html | 3 +++ docs/components/buttons-large.html | 3 +++ docs/components/buttons-mini.html | 3 +++ docs/components/buttons.html | 3 +++ docs/components/common-layout.html | 3 +++ docs/components/forms.html | 3 +++ docs/components/icons.html | 3 +++ docs/components/lists.html | 3 +++ docs/components/mini-sidebar.html | 3 +++ docs/components/navs.html | 3 +++ docs/components/tables.html | 3 +++ docs/components/three-paned.html | 3 +++ docs/demo-app.html | 3 +++ 18 files changed, 54 insertions(+) diff --git a/docs/components/bars-actions.html b/docs/components/bars-actions.html index 5e1fbb1..6db98e9 100644 --- a/docs/components/bars-actions.html +++ b/docs/components/bars-actions.html @@ -7,6 +7,9 @@ + + +
diff --git a/docs/components/bars-tabs.html b/docs/components/bars-tabs.html index c93c499..6f09722 100644 --- a/docs/components/bars-tabs.html +++ b/docs/components/bars-tabs.html @@ -7,6 +7,9 @@ + + +
diff --git a/docs/components/bars.html b/docs/components/bars.html index be44d83..63d617d 100644 --- a/docs/components/bars.html +++ b/docs/components/bars.html @@ -7,6 +7,9 @@ + + +
diff --git a/docs/components/basic-sidebar.html b/docs/components/basic-sidebar.html index 3e77dad..9d854fb 100644 --- a/docs/components/basic-sidebar.html +++ b/docs/components/basic-sidebar.html @@ -7,6 +7,9 @@ + + +
diff --git a/docs/components/basic-window.html b/docs/components/basic-window.html index a52c155..d01369f 100644 --- a/docs/components/basic-window.html +++ b/docs/components/basic-window.html @@ -7,6 +7,9 @@ + + +
diff --git a/docs/components/button-groups.html b/docs/components/button-groups.html index 90e6c3c..71e2da8 100644 --- a/docs/components/button-groups.html +++ b/docs/components/button-groups.html @@ -8,6 +8,9 @@ + + +