-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from FoxUSA/Fox-Working
Fox working
- Loading branch information
Showing
17 changed files
with
823 additions
and
21 deletions.
There are no files selected for viewing
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#Ignore everything | ||
* | ||
|
||
#Except | ||
!*.less | ||
!.gitignore |
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,118 @@ | ||
/** | ||
* Twitter Bootstrap Look and Feel | ||
* Based on http://twitter.github.com/bootstrap/ | ||
*/ | ||
|
||
/** offset all the other colors */ | ||
@offset: #000000; | ||
|
||
.alertify, | ||
.alertify-log { | ||
font-family: inherit; | ||
} | ||
.alertify { | ||
background: negation(#000, @offset); | ||
border-radius: 6px; | ||
top: 100px; /*how far down to appear*/ | ||
-webkit-background-clip: padding; /* Safari 4? Chrome 6? */ | ||
-moz-background-clip: padding; /* Firefox 3.6 */ | ||
background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */ | ||
} | ||
.alertify-dialog { | ||
padding: 0; | ||
} | ||
.alertify-inner { | ||
text-align: left; | ||
} | ||
.alertify-message { | ||
padding: 15px; | ||
margin: 0; | ||
} | ||
.alertify-text-wrapper { | ||
padding: 0 15px; | ||
} | ||
.alertify-text { | ||
color: negation(#CCC, @offset); | ||
|
||
padding: 8px; | ||
border: 1px solid negation(#CCC, @offset); | ||
} | ||
.alertify-text:focus { | ||
outline: 0; | ||
} | ||
|
||
.alertify-buttons { | ||
padding: 14px 15px 15px; | ||
text-align: right; | ||
} | ||
.alertify-button, | ||
.alertify-button:hover, | ||
.alertify-button:focus, | ||
.alertify-button:active { | ||
margin-left: 10px; | ||
border-radius: 4px; | ||
font-weight: inherit; | ||
padding: 4px 12px; | ||
text-decoration: none; | ||
} | ||
.alertify-button:focus { | ||
outline: none; | ||
} | ||
.alertify-button:active { | ||
position: relative; | ||
} | ||
.alertify-button-cancel, | ||
.alertify-button-cancel:hover, | ||
.alertify-button-cancel:focus, | ||
.alertify-button-cancel:active { | ||
color: negation(#CCC, @offset); | ||
} | ||
.alertify-button-cancel:hover, | ||
.alertify-button-cancel:focus, | ||
.alertify-button-cancel:active { | ||
color: negation(#000, @offset); | ||
background: negation(#fff, @offset); | ||
} | ||
.alertify-button-ok, | ||
.alertify-button-ok:hover, | ||
.alertify-button-ok:focus, | ||
.alertify-button-ok:active { | ||
color: negation(#CCC, @offset); | ||
} | ||
.alertify-button-ok:hover, | ||
.alertify-button-ok:focus, | ||
.alertify-button-ok:active { | ||
color: negation(#000, @offset); | ||
background: negation(#fff, @offset); | ||
} | ||
|
||
.alertify-log { | ||
background: negation(#000, @offset); | ||
padding: 8px 14px; | ||
border-radius: 4px; | ||
color: negation(#CCC, @offset); | ||
border: none; | ||
} | ||
.alertify-log-error { | ||
color: #CC0000; /*Always red never offset*/ | ||
} | ||
.alertify-log-success { | ||
color: negation(#CCC, @offset); | ||
} | ||
|
||
.alertify-cover { | ||
transition: opacity 1s ease-out, width 0s; | ||
background-color: negation(#555, @offset); | ||
height: 100%; | ||
position: fixed; | ||
width: 100%; | ||
top: 0; | ||
opacity: 0.8; | ||
right:0; | ||
} | ||
|
||
.alertify-cover.alertify-cover-hidden{/*For animation*/ | ||
display: block; | ||
opacity: 0; | ||
width:0; | ||
} |
Oops, something went wrong.