forked from kartoza/geonode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
3,896 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* jQuery Dynatable plugin 0.3.1 | ||
* | ||
* Copyright (c) 2014 Steve Schwartz (JangoSteve) | ||
* | ||
* Dual licensed under the AGPL and Proprietary licenses: | ||
* http://www.dynatable.com/license/ | ||
* | ||
* Date: Tue Jan 02 2014 | ||
*/ | ||
|
||
.dynatable-search { | ||
float: right; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.dynatable-pagination-links { | ||
float: right; | ||
} | ||
|
||
.dynatable-record-count { | ||
display: block; | ||
padding: 5px 0; | ||
} | ||
|
||
.dynatable-pagination-links span, | ||
.dynatable-pagination-links li { | ||
display: inline-block; | ||
} | ||
|
||
.dynatable-page-link, | ||
.dynatable-page-break { | ||
display: block; | ||
padding: 5px 7px; | ||
} | ||
|
||
.dynatable-page-link { | ||
cursor: pointer; | ||
} | ||
|
||
.dynatable-active-page, | ||
.dynatable-disabled-page { | ||
cursor: text; | ||
} | ||
.dynatable-active-page:hover, | ||
.dynatable-disabled-page:hover { | ||
text-decoration: none; | ||
} | ||
|
||
.dynatable-active-page { | ||
background: #71AF5A; | ||
border-radius: 5px; | ||
color: #fff; | ||
} | ||
.dynatable-active-page:hover { | ||
color: #fff; | ||
} | ||
.dynatable-disabled-page, | ||
.dynatable-disabled-page:hover { | ||
background: none; | ||
color: #999; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
On Off Switch | ||
*/ | ||
.onoffswitch { | ||
position: relative; width: 90px; | ||
-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; | ||
} | ||
.onoffswitch-checkbox { | ||
display: none; | ||
} | ||
.onoffswitch-label { | ||
display: block; overflow: hidden; cursor: pointer; | ||
border: 2px solid #999999; border-radius: 20px; | ||
margin-right: 0px; | ||
} | ||
.onoffswitch-inner { | ||
display: block; width: 200%; margin-left: -100%; | ||
transition: margin 0.3s ease-in 0s; | ||
} | ||
.onoffswitch-inner:before, .onoffswitch-inner:after { | ||
display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px; | ||
font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold; | ||
box-sizing: border-box; | ||
} | ||
.onoffswitch-inner:before { | ||
content: "ON"; | ||
padding-left: 10px; | ||
background-color: #50cf5c; color: #FFFFFF; | ||
} | ||
.onoffswitch-inner:after { | ||
content: "OFF"; | ||
padding-right: 10px; | ||
background-color: #EEEEEE; color: #999999; | ||
text-align: right; | ||
} | ||
.onoffswitch-switch { | ||
display: block; width: 18px; margin: 8px; height: 18px; | ||
background: #FFFFFF; | ||
position: absolute; top: 0; bottom: 0; | ||
right: 56px; | ||
border: 2px solid #999999; border-radius: 20px; | ||
transition: all 0.3s ease-in 0s; | ||
} | ||
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { | ||
margin-left: 0; | ||
} | ||
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { | ||
right: 0px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.