MediaWiki:GlobalCollect.css: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
Kaldari (talk | contribs)
fixing typo
Add input and button styling from Peter Coombe
Line 1: Line 1:
/* This page is currently used to provide css for testing the Global Collect payment systems. Please do not edit without talking to James Alexander or Ryan Kaldari */
/* This page is currently used to provide css for testing the Global Collect payment systems. Please do not edit without talking to Fundraising Tech */


body#pageGetMissingData {
body#pageGetMissingData {
Line 63: Line 63:
td.Heading1 {
td.Heading1 {
font-weight: bold;
font-weight: bold;
}

input, select {
background-color: #f6f6f6;
padding: 1em !important;
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.2), inset 0 0 0 1px rgba(0,0,0,.1);
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2), inset 0 0 0 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.2), inset 0 0 0 1px rgba(0,0,0,.1);
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
border: 0 !important;
color: #006699;
cursor: pointer;
margin-bottom: .2em;
}

input.ORB_SELECT:first-child {
margin-right: 2%;
}

input#btnSubmit {
text-transform: uppercase;
font-size: 1.3em;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
padding: .6em !important;
}
}

Revision as of 01:00, 20 November 2014

/* This page is currently used to provide css for testing the Global Collect payment systems. Please do not edit without talking to Fundraising Tech */

body#pageGetMissingData {
background-color: transparent;
}

table.ORB_TABLE_FIELDS td {
  padding: 5px 0;
}
div.ORB_INSTRUCTIONS {
  display: none;
}
.ORB_INPUT {
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  box-shadow: 0 0 1px #DDDDDD inset;
  padding: 0.3em;
  vertical-align: middle;
}
.ORB_SELECT {
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  padding: 0.3em;
  width: 120px;
}
td.ORB_TD_ERRORLEFT {
  display: none;
}
input#F1136 {
  margin-right: 4px;
  width: 50px;
}
#MANDATORY_F1009, #MANDATORY_F1010 {
  display: none;
}
div.ORB_BUTTONELEMENT {
  margin-left: 0;
}
.ORB_BUTTON {
  font-size: 12px;
  font-weight: normal;
  width: 15em;
}
input#btnCancel {
  display: none;
}

/* Add some margins to the CVV Help pop-up page */
div#divCVVHelp {
  margin: 1em;
}
/* Hide "Press this button to return to the shop..." message */
span.ORB_BUTTONHELPTEXT {
  display: none;
}

/* Hide the drop down with only one option (why does this even exist...) */
select#selectCard {
  display: none;
}

/* bold cvv window title */
td.Heading1 {
  font-weight: bold;
}

input, select {
    background-color: #f6f6f6;
    padding: 1em !important;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2), inset 0 0 0 1px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2), inset 0 0 0 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 1px rgba(0,0,0,.2), inset 0 0 0 1px rgba(0,0,0,.1);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 0 !important;
    color: #006699;
    cursor: pointer;
    margin-bottom: .2em;
}

input.ORB_SELECT:first-child {
    margin-right: 2%;
}

input#btnSubmit {
    text-transform: uppercase;
    font-size: 1.3em;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: .6em !important;
}