Changeset 5626 in subversion


Ignore:
Timestamp:
Dec 17, 2011 10:32:14 AM (18 months ago)
Author:
thomasb
Message:

Adapt Larry button styles

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/jqueryui/themes/larry/jquery-ui-1.8.14.custom.css

    r5624 r5626  
    427427/* workarounds */ 
    428428button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ 
     429 
     430/* Roundcube button styling */ 
     431.ui-button.ui-state-default { 
     432        display: inline-block; 
     433        margin: 0 2px; 
     434        padding: 1px 2px; 
     435        text-shadow: 0px 1px 1px #fff; 
     436        border: 1px solid #c6c6c6; 
     437        border-radius: 4px; 
     438        background: #f7f7f7; 
     439        background: -moz-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); 
     440        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6)); 
     441        background: -o-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); 
     442        background: -ms-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); 
     443        background: linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); 
     444        box-shadow: 0 1px 1px 0 #ccc; 
     445        -o-box-shadow: 0 1px 1px 0 #ccc; 
     446        -webkit-box-shadow: 0 1px 1px 0 #ccc; 
     447        -moz-box-shadow: 0 1px 1px 0 #ccc; 
     448        text-decoration: none; 
     449} 
     450 
     451.ui-button.ui-state-hover { 
     452        color: #525252; 
     453        border-color: #aaa; 
     454} 
     455 
     456.ui-button.ui-state-active { 
     457        color: #525252; 
     458        border-color: #aaa; 
     459        background: #e6e6e6; 
     460        background: -moz-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); 
     461        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6e6), color-stop(100%,#f9f9f9)); 
     462        background: -o-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); 
     463        background: -ms-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); 
     464        background: linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); 
     465 
     466} 
     467 
    429468/* 
    430469 * jQuery UI Dialog 1.8.16 
Note: See TracChangeset for help on using the changeset viewer.