Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions misc/theme-cicada/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
PLUGIN_NAME= theme-cicada
PLUGIN_VERSION= 0.1
PLUGIN_REVISION= 1
PLUGIN_COMMENT= The grey-orange theme
PLUGIN_MAINTAINER= remic-webdesign@chello.at
PLUGIN_DEVEL= yes

.include "../../Mk/plugins.mk"
1 change: 1 addition & 0 deletions misc/theme-cicada/pkg-descr
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The grey-orange theme.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@function twbs-font-path($path) {
@return font-url($path, true);
}

@function twbs-image-path($path) {
@return image-url($path, true);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Mincer asset helper functions
//
// This must be imported into a .css.ejs.scss file.
// Then, <% %>-interpolations will be parsed as strings by Sass, and evaluated by EJS after Sass compilation.


@function twbs-font-path($path) {
// do something like following
// from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>"
// from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>"
// or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>"
@return "<%- asset_path('#{$path}'.replace(/[#?].*$/, '')) + '#{$path}'.replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>";
}

@function twbs-image-path($file) {
@return "<%- asset_path('#{$file}') %>";
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@function twbs-font-path($path) {
@return font-path($path);
}

@function twbs-image-path($path) {
@return image-path($path);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
.modal-backdrop {
z-index: -1;
}

.bootstrap-dialog {

.modal-header {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.bootstrap-dialog-title {
color: #ccc;
display: inline-block;
}
.bootstrap-dialog-button-icon {
margin-right: 3px;
}
.bootstrap-dialog-close-button {
float: right;
filter:alpha(opacity=90);
-moz-opacity:0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
&:hover {
cursor: pointer;
filter: alpha(opacity=100);
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
}
}

/* dialog types */
&.type-default {
.modal-header {
background-color: #445;
}
.bootstrap-dialog-title {
color: #ccc;
}
}

&.type-info {
.modal-header {
background-color: #454545;
}
}

&.type-primary {
.modal-header {
background-color: #EA7105;
}
}

&.type-success {
.modal-header {
background-color: #9BD275;
}
}

&.type-warning {
.modal-header {
background-color: #f0ad4e;
}
}

&.type-danger {
.modal-header {
background-color: #d9534f;
}
}

&.size-large {
.bootstrap-dialog-title {
font-size: 24px;
}
.bootstrap-dialog-close-button {
font-size: 30px;
}
.bootstrap-dialog-message {
font-size: 18px;
}
}

/**
* Icon animation
* Copied from font-awesome: http://fontawesome.io/
**/
.icon-spin {
display: inline-block;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg);
}
100% {
-o-transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-ms-transform: rotate(0deg);
}
100% {
-ms-transform: rotate(359deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
/** End of icon animation **/
}
Loading