af48cb799e
git-svn-id: http://google-refine.googlecode.com/svn/trunk@940 7d457c2a-affb-35e4-300a-418c747d4874
92 lines
2.2 KiB
CSS
92 lines
2.2 KiB
CSS
/*
|
|
-----------------------------------------
|
|
Buttons
|
|
-----------------------------------------
|
|
*/
|
|
|
|
/*
|
|
|
|
Active button currently is used to for buttons which are the primary call to action.
|
|
This should be updated so that .active represents the state of a button, not it's
|
|
relative importance in a workflow. Suggested class name would be .primary, which
|
|
may or may not be .active
|
|
|
|
*/
|
|
|
|
|
|
|
|
button, a.button-link {
|
|
font-size: 1.2em;
|
|
line-height: 1.5;
|
|
background: #e6e6e6 url(/images/freebase-sprite-vertical.png) repeat-x 0 -3380px;
|
|
color: #666;
|
|
font-weight:bold;
|
|
margin: 2px;
|
|
padding: 3px 6px;
|
|
border: 1px solid #c5c5c5;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
display: inline-block;
|
|
overflow: visible;
|
|
cursor: pointer;
|
|
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.button-primary,
|
|
input[type=submit].button-primary,
|
|
button.active {
|
|
color: #fff;
|
|
border: 1px solid #dc5800;
|
|
font-weight: bold;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
display: inline-block;
|
|
overflow: visible;
|
|
cursor: pointer;
|
|
margin: 2px;
|
|
padding: 3px 6px;
|
|
font-size: 1.2em;
|
|
line-height: 1.5;
|
|
background: #fa7c0a url(/images/freebase-sprite-vertical.png) repeat-x 0 -3450px;
|
|
}
|
|
|
|
button[disabled],
|
|
button.disabled,
|
|
button.primary.disabled,
|
|
a.button-link.disabled,
|
|
a.button-link-primary.disabled {
|
|
background: #e6e6e6 url(/images/freebase-sprite-vertical.png) repeat-x 0 -3380px;
|
|
color: #b3b3b3;
|
|
border: 1px solid #d6d6d6;
|
|
cursor: default;
|
|
}
|
|
button[disabled]:hover,
|
|
button.disabled:hover {
|
|
cursor: default;
|
|
border: 1px solid #d6d6d6;
|
|
}
|
|
|
|
a.button-link-primary {
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
background: #fa7c0a url(/images/freebase-sprite-vertical.png) repeat-x 0 -3450px;
|
|
margin: 2px;
|
|
color: #fff;
|
|
padding: 3px 6px;
|
|
border: 1px solid #dc5800;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
display: inline-block;
|
|
overflow: visible;
|
|
cursor: pointer;
|
|
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button:hover,
|
|
.button-link:hover,
|
|
a.button-link-primary:hover {
|
|
border: 1px solid #61d7f7;
|
|
text-decoration: none;
|
|
}
|