-
Notifications
You must be signed in to change notification settings - Fork 16
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
94 additions
and
227 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
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,87 @@ | ||
/* | ||
* jquery-filestyle | ||
* http://dev.tudosobreweb.com.br/jquery-filestyle/ | ||
* | ||
* Copyright (c) 2015 Markus Vinicius da Silva Lima | ||
* Version 1.5.0 | ||
* Licensed under the MIT license. | ||
*/ | ||
.jfilestyle { | ||
display: inline-block; | ||
margin: 0px 0px 10px 0px; | ||
padding: 0px; | ||
position: relative; | ||
border-collapse: separate; | ||
} | ||
|
||
div.jfilestyle label, div.jfilestyle input { | ||
font-family: sans-serif; | ||
} | ||
|
||
div.jfilestyle input { | ||
border: 1px solid #c0c0c0; | ||
background: #d9d9d9; | ||
margin: 0px -5px 0px 0px; | ||
vertical-align: middle; | ||
padding: 0.5em; | ||
font-size: 1em; | ||
height: 16px; | ||
border-radius: 4px; | ||
color: #8d8d8d; | ||
cursor: default; | ||
} | ||
|
||
div.jfilestyle label { | ||
display: inline-block; | ||
border: 1px solid #c0c0c0; | ||
background: #ffffff; | ||
padding: 0.5em 0.7em; | ||
color: #0662ba; | ||
vertical-align: middle; | ||
line-height: 15px; | ||
text-align: center; | ||
margin: 0px; | ||
font-size: 1em; | ||
width: auto; | ||
border-radius: 4px; | ||
height: 16px; | ||
} | ||
|
||
div.jfilestyle.jfilestyle-corner input:first-child { | ||
border-right: 0; | ||
} | ||
|
||
div.jfilestyle.jfilestyle-corner input:last-child { | ||
border-left: 0; | ||
} | ||
|
||
div.jfilestyle.jfilestyle-corner input:first-child, | ||
div.jfilestyle.jfilestyle-corner span:first-child>label { | ||
border-radius: 4px 0 0 4px; | ||
} | ||
|
||
div.jfilestyle.jfilestyle-corner input:last-child, | ||
div.jfilestyle.jfilestyle-corner span:last-child>label { | ||
border-radius: 0 4px 4px 0; | ||
} | ||
|
||
div.jfilestyle label[disabled] { | ||
pointer-events: none; | ||
opacity: 0.6; | ||
filter: alpha(opacity=65); | ||
cursor: not-allowed; | ||
} | ||
|
||
div.jfilestyle label:hover { | ||
background: #f4f4f4; | ||
cursor: pointer; | ||
} | ||
|
||
div.jfilestyle .count-jfilestyle { | ||
background: #303030; | ||
color: #fff; | ||
border-radius: 50%; | ||
padding: 1px 5px; | ||
font-size: 12px; | ||
vertical-align: middle; | ||
} |
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
File renamed without changes.
File renamed without changes.