diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
commit | 9ae185c18eb06e3ce7e2daea0c61e6f6478bdca9 (patch) | |
tree | ace22189e031f7f78639f743a872d86c3a65eda0 /assets/sass/_project_views_switcher.sass | |
parent | 2bf0f99b519aec5b2068a689a8051d88154e3850 (diff) |
Remove dependency on Sass
- Convert *.sass files to vanilla CSS
- Start using CSS variables
- Add PHP minifier
Diffstat (limited to 'assets/sass/_project_views_switcher.sass')
-rw-r--r-- | assets/sass/_project_views_switcher.sass | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/assets/sass/_project_views_switcher.sass b/assets/sass/_project_views_switcher.sass deleted file mode 100644 index 99d0aecc..00000000 --- a/assets/sass/_project_views_switcher.sass +++ /dev/null @@ -1,45 +0,0 @@ -@import variables -@import mixins - -$breakdown-switcher: 560px - -.views - margin-right: 10px - margin-top: 1px - font-size: size('compact') - @include custom-device($breakdown-switcher) - width: 100% - @include sm-device - margin-top: 10px - font-size: size('normal') - @include xs-device - margin-top: 5px - li - white-space: nowrap - background: #fafafa - border: 1px solid #ddd - border-right: none - padding: 4px 8px - display: inline - @include custom-device($breakdown-switcher) - display: block - margin-top: 5px - border-radius: 5px - border: 1px solid #ddd - &.active a - font-weight: bold - color: color('dark') - text-decoration: none - &:first-child - border-top-left-radius: 5px - border-bottom-left-radius: 5px - &:last-child - border-right: 1px solid #ddd - border-top-right-radius: 5px - border-bottom-right-radius: 5px - a - color: color('medium') - text-decoration: none - &:hover - color: color('primary') - text-decoration: underline |