This repository has been archived by the owner on Feb 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
280 additions
and
33 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 |
---|---|---|
@@ -1,3 +1,17 @@ | ||
|
||
*.komodoproject | ||
/.komodotools | ||
.sass-cache | ||
config.rb | ||
.DS_Store | ||
sco-message-error.html | ||
|
||
sco-message-ok.html | ||
|
||
sco-panes-fade.html | ||
|
||
sco-panes-flip.html | ||
|
||
sco-panes-slide.html | ||
|
||
sco-tooltip.html |
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
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,73 @@ | ||
.cropFrame { | ||
overflow : hidden; | ||
position : relative; | ||
} | ||
.cropImage { | ||
position : absolute; | ||
top : 0; | ||
left : 0; | ||
cursor : move; | ||
max-width: none; | ||
} | ||
.cropControls { | ||
background : #000; | ||
width : 100%; | ||
height : 26px; | ||
position : absolute; | ||
z-index : 100; | ||
bottom : 0; | ||
left : 0; | ||
opacity : 0; | ||
filter : alpha(opacity=0); | ||
transition : opacity .25s linear; | ||
-moz-transition : opacity .25s linear; | ||
-webkit-transition : opacity .25s linear; | ||
} | ||
.hover .cropControls, | ||
.cropFrame:hover .cropControls { | ||
opacity : .6; | ||
filter : alpha(opacity=60); | ||
} | ||
.cropControls span { | ||
display : block; | ||
float : left; | ||
color : #fff; | ||
font-size : 11px; | ||
margin : 7px 0 0 5px; | ||
} | ||
.cropZoomIn, | ||
.cropZoomOut { | ||
display : block; | ||
float : right; | ||
margin : 4px 4px 0 0; | ||
background : #fff; | ||
color : #000; | ||
border-radius : 9px; | ||
width : 18px; | ||
height : 18px; | ||
line-height : 18px; | ||
font-size : 18px; | ||
font-weight : bold; | ||
text-align : center; | ||
text-decoration : none; | ||
cursor : pointer; | ||
/* IE SUCKS */ | ||
zoom : expression(this.runtimeStyle.zoom = "1", this.appendChild( document.createElement("b") ).className = "after")\9; | ||
} | ||
.cropZoomIn::after, | ||
.cropZoomIn .after { | ||
content : "+"; | ||
display : block; | ||
} | ||
|
||
.cropZoomOut::after, | ||
.cropZoomOut .after { | ||
vertical-align : top; | ||
line-height : 14px; | ||
font-size : 22px; | ||
margin-left : -2px; | ||
content : "-"; | ||
display : block; | ||
} | ||
|
||
|
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,91 @@ | ||
#page_message { | ||
display: none; | ||
font-size: 15px; | ||
overflow: visible; | ||
text-align: center; | ||
left: 0; | ||
top: 0; | ||
/* place over all elements, also over modals */ | ||
z-index: 10001; | ||
width: 100%; | ||
border-bottom: 1px solid; | ||
color: white; | ||
padding: 15px; | ||
position: fixed; | ||
} | ||
|
||
.page_mess_error { | ||
background-color: #de4343; | ||
border-color: #ca2424; | ||
} | ||
|
||
.page_mess_ok { | ||
background-color: #48bb5e; | ||
border-color: #38984b; | ||
} | ||
|
||
.page_mess_animate { | ||
background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent); | ||
background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent); | ||
background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent); | ||
background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent); | ||
-webkit-background-size: 10px 10px; | ||
-moz-background-size: 10px 10px; | ||
-o-background-size: 10px 10px; | ||
background-size: 10px 10px; | ||
-webkit-animation: animate-bg 3s linear infinite; | ||
-moz-animation: animate-bg 3s linear infinite; | ||
-ms-animation: animate-bg 3s linear infinite; | ||
-o-animation: animate-bg 3s linear infinite; | ||
animation: animate-bg 3s linear infinite; | ||
} | ||
|
||
@-moz-keyframes animate-bg { | ||
from { | ||
background-position: 0 0; | ||
} | ||
|
||
to { | ||
background-position: -20px 0; | ||
} | ||
} | ||
|
||
@-webkit-keyframes animate-bg { | ||
from { | ||
background-position: 0 0; | ||
} | ||
|
||
to { | ||
background-position: -20px 0; | ||
} | ||
} | ||
|
||
@-o-keyframes animate-bg { | ||
from { | ||
background-position: 0 0; | ||
} | ||
|
||
to { | ||
background-position: -20px 0; | ||
} | ||
} | ||
|
||
@-ms-keyframes animate-bg { | ||
from { | ||
background-position: 0 0; | ||
} | ||
|
||
to { | ||
background-position: -20px 0; | ||
} | ||
} | ||
|
||
@keyframes animate-bg { | ||
from { | ||
background-position: 0 0; | ||
} | ||
|
||
to { | ||
background-position: -20px 0; | ||
} | ||
} |
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
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
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
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
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