Skip to content

Commit

Permalink
Adding a small button class
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas von Deyen committed Oct 28, 2011
1 parent fc7685f commit c2ce897
Showing 1 changed file with 35 additions and 3 deletions.
38 changes: 35 additions & 3 deletions assets/stylesheets/alchemy.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* @override
http://localhost:3000/stylesheets/alchemy/alchemy.css
*/
/* @override http://localhost:3000/stylesheets/alchemy/alchemy.css */

html {
height: 100%;
Expand Down Expand Up @@ -1821,6 +1819,8 @@ button.button {
background-position: 0 -73px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
border-radius: 3px;
cursor: pointer;
color: #333;
Expand Down Expand Up @@ -1898,6 +1898,15 @@ a.button.disabled img {
float: none;
}

a.button.small.disabled img {
display: inline-block;
float: none;
position: relative;
height: 16px;
width: 16px;
top: -1px;
}

a.button.disabled,
a.button.disabled:hover,
a.button.disabled:active {
Expand All @@ -1916,6 +1925,24 @@ a.button {
line-height: 13px;
}

a.button.small {
height: 14px;
padding-top: 2px;
padding-bottom: 2px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
}

a.small.button.with_icon span.icon {
margin-top: -5px;
position: relative;
top: 3px;
left: -1px;
}

table.list tr td.tools {
width: 40px;
background-color: #ededed;
Expand Down Expand Up @@ -3420,6 +3447,11 @@ select#url_protocol.medium {
float: right;
}

#alchemy .ui-dialog-content p a.button.small {
float: none;
display: inline-block;
}

div.emulate_table input.button:disabled {
color: gray;
}
Expand Down

0 comments on commit c2ce897

Please sign in to comment.