pkdevbox / iui

Automatically exported from code.google.com/p/iui
MIT License
0 stars 0 forks source link

Needed Green Button #258

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I pretty much copied the Red Button - 
http://code.google.com/p/iui/issues/detail?id=46&can=1&q=red%20button . Image 
attached. CSS Below

.whiteButton,
.redButton,
.greenButton,
.grayButton {
    display: block;
    border-width: 0 12px;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-decoration: inherit;
    color: inherit;
}

.greenButton {
    -webkit-border-image: url(greenButton.png) 0 12 0 12;
    color:#fff;
    text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
}

Original issue reported on code.google.com by radzikowski.jake@gmail.com on 16 Jun 2010 at 11:03

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by msgilli...@gmail.com on 17 Jun 2010 at 12:25

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Thanks for this. If anybody needs a light blue button. I pretty much duplicated 
the work above. Here it is.

.whiteButton,
.redButton,
.lightblueButton,
.grayButton {
    display: block;
    border-width: 0 12px;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-decoration: inherit;
    color: inherit;
}

.lightblueButton {
    -webkit-border-image: url(lightblueButton.png) 0 12 0 12;
    color:#fff;
    text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
}

Original comment by tda...@gmail.com on 29 Jun 2010 at 9:23

Attachments: