mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
@@ -1176,7 +1176,7 @@ function($scope, $location, SettingsService, AnalyticsService, ServerService) {
|
||||
|
||||
$scope.ServerService = ServerService.get();
|
||||
|
||||
$scope.themes = ['default'];
|
||||
$scope.themes = ['default','MRACHINI'];
|
||||
|
||||
$scope.settingsService = SettingsService;
|
||||
$scope.$watch('settingsService.settings', function(value) {
|
||||
|
||||
@@ -9,4 +9,5 @@
|
||||
|
||||
@import "mobile/mobile";
|
||||
|
||||
@import "themes/test";
|
||||
@import "themes/test";
|
||||
@import "themes/MRACHINI";
|
||||
|
||||
34
src/main/webapp/sass/themes/_MRACHINI.scss
Normal file
34
src/main/webapp/sass/themes/_MRACHINI.scss
Normal file
@@ -0,0 +1,34 @@
|
||||
#theme-MRACHINI {
|
||||
/*transitional hightlighting*/
|
||||
.entry-title > a.ng-binding:link, .entry-body-content > div.ng-binding a:link{
|
||||
-moz-transition: background-color 1s ease-in 0s;
|
||||
-webkit-transition: background-color 1s ease-in 0s;
|
||||
-o-transition: background-color 1s ease-in 0s;
|
||||
}
|
||||
.entry-title > a.ng-binding:hover, .entry-body-content > div.ng-binding a:hover{
|
||||
background-color: lime;
|
||||
-moz-transition: background-color 1s ease-out 0s;
|
||||
-webkit-transition: background-color 1s ease-out 0s;
|
||||
-o-transition: background-color 1s ease-out 0s;
|
||||
}
|
||||
.entry-title > a.ng-binding:active, .entry-body-content > div.ng-binding a:active{
|
||||
background-color: lime;
|
||||
-moz-transition: none;
|
||||
-webkit-transition: none;
|
||||
-o-transition: none;
|
||||
}
|
||||
|
||||
/*hovered item*/
|
||||
.entry-heading:hover{box-shadow: inset 0 0 40px 0px lime !important;}
|
||||
/*hovered tree item*/
|
||||
/*.css-treeview li .tree-item:hover{box-shadow: inset 0 0 20px 0px hsla(7,63%,52%,1) !important;}*/
|
||||
.css-treeview li .tree-item:hover{box-shadow: inset 0 0 20px 0px lime !important;}
|
||||
/*highlight current selected tree item*/
|
||||
.css-treeview li .tree-item .selected{box-shadow: inset 0 0 20px 0px lime !important;}
|
||||
|
||||
.css-treeview .indent1{padding-left:10px}
|
||||
.css-treeview .indent2{padding-left:20px}
|
||||
.css-treeview .indent3{padding-left:30px}
|
||||
.css-treeview .indent4{padding-left:40px}
|
||||
.css-treeview .indent5{padding-left:50px}
|
||||
}
|
||||
Reference in New Issue
Block a user