bootswatch-sprockets 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +54 -0
- data/Rakefile +2 -0
- data/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +125 -0
- data/assets/stylesheets/bootswatch/cerulean/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +237 -0
- data/assets/stylesheets/bootswatch/cosmo/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/custom/_bootswatch.scss +22 -0
- data/assets/stylesheets/bootswatch/custom/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +210 -0
- data/assets/stylesheets/bootswatch/cyborg/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +328 -0
- data/assets/stylesheets/bootswatch/darkly/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +311 -0
- data/assets/stylesheets/bootswatch/flatly/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/global/build.scss +3 -0
- data/assets/stylesheets/bootswatch/journal/_bootswatch.scss +120 -0
- data/assets/stylesheets/bootswatch/journal/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +481 -0
- data/assets/stylesheets/bootswatch/lumen/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/paper/_bootswatch.scss +408 -0
- data/assets/stylesheets/bootswatch/paper/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/readable/_bootswatch.scss +187 -0
- data/assets/stylesheets/bootswatch/readable/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +195 -0
- data/assets/stylesheets/bootswatch/sandstone/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +142 -0
- data/assets/stylesheets/bootswatch/simplex/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/slate/_bootswatch.scss +417 -0
- data/assets/stylesheets/bootswatch/slate/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +137 -0
- data/assets/stylesheets/bootswatch/spacelab/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +332 -0
- data/assets/stylesheets/bootswatch/superhero/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/united/_bootswatch.scss +42 -0
- data/assets/stylesheets/bootswatch/united/_variables.scss +856 -0
- data/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +437 -0
- data/assets/stylesheets/bootswatch/yeti/_variables.scss +856 -0
- data/bootswatch_sprockets.gemspec +32 -0
- data/lib/bootswatch_sprockets/version.rb +3 -0
- data/lib/bootswatch_sprockets.rb +5 -0
- metadata +144 -0
| @@ -0,0 +1,328 @@ | |
| 1 | 
            +
            // Darkly 3.3.1
         | 
| 2 | 
            +
            // Bootswatch
         | 
| 3 | 
            +
            // -----------------------------------------------------
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            @import url("//fonts.googleapis.com/css?family=Lato:400,700,400italic");
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            // Navbar =====================================================================
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            .navbar {
         | 
| 10 | 
            +
              border-width: 0;
         | 
| 11 | 
            +
             | 
| 12 | 
            +
              &-default {
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                .badge {
         | 
| 15 | 
            +
                  background-color: #fff;
         | 
| 16 | 
            +
                  color: $navbar-default-bg;
         | 
| 17 | 
            +
                }
         | 
| 18 | 
            +
              }
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              &-inverse {
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                .badge {
         | 
| 23 | 
            +
                  background-color: #fff;
         | 
| 24 | 
            +
                  color: $navbar-inverse-bg;
         | 
| 25 | 
            +
                }
         | 
| 26 | 
            +
              }
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              &-brand {
         | 
| 29 | 
            +
                padding: 18.5px 15px 20.5px;
         | 
| 30 | 
            +
              }
         | 
| 31 | 
            +
             | 
| 32 | 
            +
              &-form {
         | 
| 33 | 
            +
                .form-control {
         | 
| 34 | 
            +
                  background-color: white;
         | 
| 35 | 
            +
             | 
| 36 | 
            +
                  &:focus {
         | 
| 37 | 
            +
                    border-color: white;
         | 
| 38 | 
            +
                  }
         | 
| 39 | 
            +
                }
         | 
| 40 | 
            +
              }
         | 
| 41 | 
            +
            }
         | 
| 42 | 
            +
             | 
| 43 | 
            +
            // Buttons ====================================================================
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            .btn:active {
         | 
| 46 | 
            +
              @include box-shadow(none);
         | 
| 47 | 
            +
            }
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            .btn-group.open .dropdown-toggle {
         | 
| 50 | 
            +
              @include box-shadow(none);
         | 
| 51 | 
            +
            }
         | 
| 52 | 
            +
             | 
| 53 | 
            +
            // Typography =================================================================
         | 
| 54 | 
            +
             | 
| 55 | 
            +
            .text-primary,
         | 
| 56 | 
            +
            .text-primary:hover {
         | 
| 57 | 
            +
              color: lighten($brand-primary, 10%);
         | 
| 58 | 
            +
            }
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            .text-success,
         | 
| 61 | 
            +
            .text-success:hover {
         | 
| 62 | 
            +
              color: $brand-success;
         | 
| 63 | 
            +
            }
         | 
| 64 | 
            +
             | 
| 65 | 
            +
            .text-danger,
         | 
| 66 | 
            +
            .text-danger:hover {
         | 
| 67 | 
            +
              color: $brand-danger;
         | 
| 68 | 
            +
            }
         | 
| 69 | 
            +
             | 
| 70 | 
            +
            .text-warning,
         | 
| 71 | 
            +
            .text-warning:hover {
         | 
| 72 | 
            +
              color: $brand-warning;
         | 
| 73 | 
            +
            }
         | 
| 74 | 
            +
             | 
| 75 | 
            +
            .text-info,
         | 
| 76 | 
            +
            .text-info:hover {
         | 
| 77 | 
            +
              color: $brand-info;
         | 
| 78 | 
            +
            }
         | 
| 79 | 
            +
             | 
| 80 | 
            +
            // Tables =====================================================================
         | 
| 81 | 
            +
             | 
| 82 | 
            +
            table,
         | 
| 83 | 
            +
            .table {
         | 
| 84 | 
            +
             | 
| 85 | 
            +
              a:not(.btn) {
         | 
| 86 | 
            +
                text-decoration: underline;
         | 
| 87 | 
            +
              }
         | 
| 88 | 
            +
             | 
| 89 | 
            +
              .dropdown-menu a {
         | 
| 90 | 
            +
                text-decoration: none;
         | 
| 91 | 
            +
              }
         | 
| 92 | 
            +
             | 
| 93 | 
            +
              .success,
         | 
| 94 | 
            +
              .warning,
         | 
| 95 | 
            +
              .danger,
         | 
| 96 | 
            +
              .info {
         | 
| 97 | 
            +
                color: #fff;
         | 
| 98 | 
            +
             | 
| 99 | 
            +
                a {
         | 
| 100 | 
            +
                  color: #fff;
         | 
| 101 | 
            +
                }
         | 
| 102 | 
            +
              }
         | 
| 103 | 
            +
             | 
| 104 | 
            +
              > thead > tr > th,
         | 
| 105 | 
            +
              > tbody > tr > th,
         | 
| 106 | 
            +
              > tfoot > tr > th,
         | 
| 107 | 
            +
              > thead > tr > td,
         | 
| 108 | 
            +
              > tbody > tr > td,
         | 
| 109 | 
            +
              > tfoot > tr > td {
         | 
| 110 | 
            +
                border: none;
         | 
| 111 | 
            +
              }
         | 
| 112 | 
            +
             | 
| 113 | 
            +
              &-bordered > thead > tr > th,
         | 
| 114 | 
            +
              &-bordered > tbody > tr > th,
         | 
| 115 | 
            +
              &-bordered > tfoot > tr > th,
         | 
| 116 | 
            +
              &-bordered > thead > tr > td,
         | 
| 117 | 
            +
              &-bordered > tbody > tr > td,
         | 
| 118 | 
            +
              &-bordered > tfoot > tr > td {
         | 
| 119 | 
            +
                border: 1px solid $table-border-color;
         | 
| 120 | 
            +
              }
         | 
| 121 | 
            +
            }
         | 
| 122 | 
            +
             | 
| 123 | 
            +
            // Forms ======================================================================
         | 
| 124 | 
            +
             | 
| 125 | 
            +
            input,
         | 
| 126 | 
            +
            textarea {
         | 
| 127 | 
            +
              color: $input-color;
         | 
| 128 | 
            +
            }
         | 
| 129 | 
            +
             | 
| 130 | 
            +
            .form-control,
         | 
| 131 | 
            +
            input,
         | 
| 132 | 
            +
            textarea {
         | 
| 133 | 
            +
              border: none;
         | 
| 134 | 
            +
              @include box-shadow(none);
         | 
| 135 | 
            +
             | 
| 136 | 
            +
              &:focus {
         | 
| 137 | 
            +
                @include box-shadow(none);
         | 
| 138 | 
            +
              }
         | 
| 139 | 
            +
            }
         | 
| 140 | 
            +
             | 
| 141 | 
            +
            .has-warning {
         | 
| 142 | 
            +
              .help-block,
         | 
| 143 | 
            +
              .control-label,
         | 
| 144 | 
            +
              .radio,
         | 
| 145 | 
            +
              .checkbox,
         | 
| 146 | 
            +
              .radio-inline,
         | 
| 147 | 
            +
              .checkbox-inline,
         | 
| 148 | 
            +
              .form-control-feedback {
         | 
| 149 | 
            +
                color: $brand-warning;
         | 
| 150 | 
            +
              }
         | 
| 151 | 
            +
             | 
| 152 | 
            +
              .form-control,
         | 
| 153 | 
            +
              .form-control:focus {
         | 
| 154 | 
            +
                @include box-shadow(none);
         | 
| 155 | 
            +
              }
         | 
| 156 | 
            +
             | 
| 157 | 
            +
              .input-group-addon {
         | 
| 158 | 
            +
                border-color: $brand-warning;
         | 
| 159 | 
            +
              }
         | 
| 160 | 
            +
            }
         | 
| 161 | 
            +
             | 
| 162 | 
            +
            .has-error {
         | 
| 163 | 
            +
              .help-block,
         | 
| 164 | 
            +
              .control-label,
         | 
| 165 | 
            +
              .radio,
         | 
| 166 | 
            +
              .checkbox,
         | 
| 167 | 
            +
              .radio-inline,
         | 
| 168 | 
            +
              .checkbox-inline,
         | 
| 169 | 
            +
              .form-control-feedback {
         | 
| 170 | 
            +
                color: $brand-danger;
         | 
| 171 | 
            +
              }
         | 
| 172 | 
            +
             | 
| 173 | 
            +
              .form-control,
         | 
| 174 | 
            +
              .form-control:focus {
         | 
| 175 | 
            +
                @include box-shadow(none);
         | 
| 176 | 
            +
              }
         | 
| 177 | 
            +
             | 
| 178 | 
            +
              .input-group-addon {
         | 
| 179 | 
            +
                border-color: $brand-danger;
         | 
| 180 | 
            +
              }
         | 
| 181 | 
            +
            }
         | 
| 182 | 
            +
             | 
| 183 | 
            +
            .has-success {
         | 
| 184 | 
            +
              .help-block,
         | 
| 185 | 
            +
              .control-label,
         | 
| 186 | 
            +
              .radio,
         | 
| 187 | 
            +
              .checkbox,
         | 
| 188 | 
            +
              .radio-inline,
         | 
| 189 | 
            +
              .checkbox-inline,
         | 
| 190 | 
            +
              .form-control-feedback {
         | 
| 191 | 
            +
                color: $brand-success;
         | 
| 192 | 
            +
              }
         | 
| 193 | 
            +
             | 
| 194 | 
            +
              .form-control,
         | 
| 195 | 
            +
              .form-control:focus {
         | 
| 196 | 
            +
                @include box-shadow(none);
         | 
| 197 | 
            +
              }
         | 
| 198 | 
            +
             | 
| 199 | 
            +
              .input-group-addon {
         | 
| 200 | 
            +
                border-color: $brand-success;
         | 
| 201 | 
            +
              }
         | 
| 202 | 
            +
            }
         | 
| 203 | 
            +
             | 
| 204 | 
            +
            .input-group-addon {
         | 
| 205 | 
            +
              color: $text-color;
         | 
| 206 | 
            +
            }
         | 
| 207 | 
            +
             | 
| 208 | 
            +
            // Navs =======================================================================
         | 
| 209 | 
            +
             | 
| 210 | 
            +
            .nav {
         | 
| 211 | 
            +
              .open > a,
         | 
| 212 | 
            +
              .open > a:hover,
         | 
| 213 | 
            +
              .open > a:focus {
         | 
| 214 | 
            +
                border-color: $nav-tabs-border-color;
         | 
| 215 | 
            +
              }
         | 
| 216 | 
            +
            }
         | 
| 217 | 
            +
             | 
| 218 | 
            +
            .nav-tabs > li > a,
         | 
| 219 | 
            +
            .nav-pills > li > a {
         | 
| 220 | 
            +
              color: #fff;
         | 
| 221 | 
            +
            }
         | 
| 222 | 
            +
             | 
| 223 | 
            +
            .pager {
         | 
| 224 | 
            +
              a,
         | 
| 225 | 
            +
              a:hover {
         | 
| 226 | 
            +
                color: #fff;
         | 
| 227 | 
            +
              }
         | 
| 228 | 
            +
             | 
| 229 | 
            +
              .disabled {
         | 
| 230 | 
            +
                &>a,
         | 
| 231 | 
            +
                &>a:hover,
         | 
| 232 | 
            +
                &>a:focus,
         | 
| 233 | 
            +
                &>span {
         | 
| 234 | 
            +
                  background-color: $pagination-disabled-bg;
         | 
| 235 | 
            +
                }
         | 
| 236 | 
            +
              }
         | 
| 237 | 
            +
            }
         | 
| 238 | 
            +
             | 
| 239 | 
            +
            .breadcrumb a {
         | 
| 240 | 
            +
              color: #fff;
         | 
| 241 | 
            +
            }
         | 
| 242 | 
            +
             | 
| 243 | 
            +
            // Indicators =================================================================
         | 
| 244 | 
            +
             | 
| 245 | 
            +
            .close {
         | 
| 246 | 
            +
              text-decoration: none;
         | 
| 247 | 
            +
              text-shadow: none;
         | 
| 248 | 
            +
              opacity: 0.4;
         | 
| 249 | 
            +
             | 
| 250 | 
            +
              &:hover,
         | 
| 251 | 
            +
              &:focus {
         | 
| 252 | 
            +
                opacity: 1;
         | 
| 253 | 
            +
              }
         | 
| 254 | 
            +
            }
         | 
| 255 | 
            +
             | 
| 256 | 
            +
            .alert {
         | 
| 257 | 
            +
              .alert-link {
         | 
| 258 | 
            +
                color: #fff;
         | 
| 259 | 
            +
                text-decoration: underline;
         | 
| 260 | 
            +
              }
         | 
| 261 | 
            +
            }
         | 
| 262 | 
            +
             | 
| 263 | 
            +
            // Progress bars ==============================================================
         | 
| 264 | 
            +
             | 
| 265 | 
            +
            .progress {
         | 
| 266 | 
            +
              height: 10px;
         | 
| 267 | 
            +
              @include box-shadow(none);
         | 
| 268 | 
            +
              .progress-bar {
         | 
| 269 | 
            +
                font-size: 10px;
         | 
| 270 | 
            +
                line-height: 10px;
         | 
| 271 | 
            +
              }
         | 
| 272 | 
            +
            }
         | 
| 273 | 
            +
             | 
| 274 | 
            +
            // Containers =================================================================
         | 
| 275 | 
            +
             | 
| 276 | 
            +
            .well {
         | 
| 277 | 
            +
              @include box-shadow(none);
         | 
| 278 | 
            +
            }
         | 
| 279 | 
            +
             | 
| 280 | 
            +
            a.list-group-item {
         | 
| 281 | 
            +
             | 
| 282 | 
            +
              &.active,
         | 
| 283 | 
            +
              &.active:hover,
         | 
| 284 | 
            +
              &.active:focus {
         | 
| 285 | 
            +
                border-color: $list-group-border;
         | 
| 286 | 
            +
              }
         | 
| 287 | 
            +
             | 
| 288 | 
            +
              &-success {
         | 
| 289 | 
            +
                &.active {
         | 
| 290 | 
            +
                  background-color: $state-success-bg;
         | 
| 291 | 
            +
                }
         | 
| 292 | 
            +
             | 
| 293 | 
            +
                &.active:hover,
         | 
| 294 | 
            +
                &.active:focus {
         | 
| 295 | 
            +
                  background-color: darken($state-success-bg, 5%);
         | 
| 296 | 
            +
                }
         | 
| 297 | 
            +
              }
         | 
| 298 | 
            +
             | 
| 299 | 
            +
              &-warning {
         | 
| 300 | 
            +
                &.active {
         | 
| 301 | 
            +
                  background-color: $state-warning-bg;
         | 
| 302 | 
            +
                }
         | 
| 303 | 
            +
                
         | 
| 304 | 
            +
                &.active:hover,
         | 
| 305 | 
            +
                &.active:focus {
         | 
| 306 | 
            +
                  background-color: darken($state-warning-bg, 5%);
         | 
| 307 | 
            +
                }
         | 
| 308 | 
            +
              }
         | 
| 309 | 
            +
             | 
| 310 | 
            +
              &-danger {
         | 
| 311 | 
            +
                &.active {
         | 
| 312 | 
            +
                  background-color: $state-danger-bg;
         | 
| 313 | 
            +
                }
         | 
| 314 | 
            +
                
         | 
| 315 | 
            +
                &.active:hover,
         | 
| 316 | 
            +
                &.active:focus {
         | 
| 317 | 
            +
                  background-color: darken($state-danger-bg, 5%);
         | 
| 318 | 
            +
                }
         | 
| 319 | 
            +
              }
         | 
| 320 | 
            +
            }
         | 
| 321 | 
            +
             | 
| 322 | 
            +
            .popover {
         | 
| 323 | 
            +
              color: $text-color;
         | 
| 324 | 
            +
            }
         | 
| 325 | 
            +
             | 
| 326 | 
            +
            .panel-default > .panel-heading {
         | 
| 327 | 
            +
              background-color: $panel-footer-bg;
         | 
| 328 | 
            +
            }
         |