Skip to content

Commit

Permalink
Merge pull request #150 from eagletmt/bye-scss
Browse files Browse the repository at this point in the history
Drop dependency on scss
  • Loading branch information
eagletmt authored Oct 5, 2023
2 parents 03887bd + f507314 commit 6133e42
Show file tree
Hide file tree
Showing 8 changed files with 59 additions and 74 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* = require select2
* = require vis
*/

.spacer-top-10 {
padding-top: 10px;
}
Expand All @@ -22,48 +21,38 @@
}

.log {
font-family: 'Inconsolata';
font-family: "Inconsolata";
white-space: pre-wrap;
}

.no-decorate {
a {
color: #444;
}
.no-decorate a {
color: #444;
}

.display-none {
display: none;
}

.skin-black .sidebar > .sidebar-menu > li {
a[name]:hover {
background-color: #333;
}

.active a {
background: #444;
}

.menu-child {
padding: 0px;
}

.menu-child-item {
> a {
padding: 12px 5px 12px 35px;
display: block;
margin-right: 1px;
color: #f6f6f6;

.fa {
width: 20px;
}
}
> a:hover {
background: #444;
}
}
.skin-black .sidebar > .sidebar-menu > li a[name]:hover {
background-color: #333;
}
.skin-black .sidebar > .sidebar-menu > li .active a {
background: #444;
}
.skin-black .sidebar > .sidebar-menu > li .menu-child {
padding: 0px;
}
.skin-black .sidebar > .sidebar-menu > li .menu-child-item > a {
padding: 12px 5px 12px 35px;
display: block;
margin-right: 1px;
color: #f6f6f6;
}
.skin-black .sidebar > .sidebar-menu > li .menu-child-item > a .fa {
width: 20px;
}
.skin-black .sidebar > .sidebar-menu > li .menu-child-item > a:hover {
background: #444;
}

#peek {
Expand Down
1 change: 1 addition & 0 deletions app/assets/stylesheets/kuroko2/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import url("//fonts.googleapis.com/css?family=Inconsolata|Source+Sans+Pro:300,400,600,300italic,400italic,600italic|Homenaje");
1 change: 0 additions & 1 deletion app/assets/stylesheets/kuroko2/fonts.scss

This file was deleted.

29 changes: 29 additions & 0 deletions app/assets/stylesheets/kuroko2/job_definitions.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
.description h1 {
font-size: 16px;
}
.description h2,
.description h3,
.description h4 {
font-weight: bold;
font-size: 14px;
}

.star-holder a:link,
.star-holder a:visited,
.star-holder a:hover,
.star-holder a:active {
color: #444;
}

.script-input {
font-family: "Inconsolata";
}

.kuroko-script span.note {
color: #888;
}

#suspend-cron-error {
display: none;
color: #843534;
}
30 changes: 0 additions & 30 deletions app/assets/stylesheets/kuroko2/job_definitions.scss

This file was deleted.

6 changes: 6 additions & 0 deletions app/assets/stylesheets/kuroko2/users.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.user-controls {
text-align: right;
}
.user-controls a:not(:last-child) {
margin-right: 5px;
}
7 changes: 0 additions & 7 deletions app/assets/stylesheets/kuroko2/users.scss

This file was deleted.

2 changes: 0 additions & 2 deletions kuroko2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ Gem::Specification.new do |s|
s.add_dependency 'faraday'
s.add_dependency 'sprockets'
s.add_dependency 'slim-rails'
s.add_dependency 'sass', '~> 3.4.5'
s.add_dependency 'sass-rails'
s.add_dependency 'uglifier', '>= 4'
s.add_dependency 'jbuilder'

Expand Down

0 comments on commit 6133e42

Please sign in to comment.