You are here

acquia_lift.buttons.css in Acquia Lift Connector 7

Same filename and directory in other branches
  1. 7.2 css/acquia_lift.buttons.css
/** Button styles from Ember theme for submit and cancel buttons **/
input[type="submit"].acquia-lift-submit-button,
.acquia-lift-cancel-button {
  -webkit-appearance: none;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin: 0.2963em;
  max-width: 100%;
  overflow: visible;
  line-height: 1.25em;
  vertical-align: baseline;
  border: none;
  -o-border-radius: 2px;
  border-radius: 2px;
  /* Reset all button fonts to a similar baseline in webkit. */
  font: -webkit-small-control;
  font-family: "Helvetica Neue", helvetica, "Segoe UI", segoe, "Ubuntu", "Droid Sans", "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  padding: 0.70711em 1em;
  font-size: 1em;
  height: inherit;
  display: inline-block;
}

input[type="submit"].acquia-lift-submit-button:active {
  text-decoration: none;
  box-shadow: 0 0 0 0.2963em rgba(221, 221, 221, 0.4);
}

.acquia-lift-submit-button.action-item-primary-active {
  color: white;
  background: #008fdc;
  text-shadow: 0 1px 0 #002a42;
}

.acquia-lift-submit-button.action-item-primary-active:hover,
.acquia-lift-submit-button.action-item-primary-active:active {
  color: white;
  background: #58b7ea;
  text-shadow: 0 1px 0 #1a3646;
}

.acquia-lift-submit-button.form-button-disabled,
.acquia-lift-submit-button.form-button-disabled:active,
.acquia-lift-submit-button.form-button-disabled:hover {
  color: #bbb;
  background: #717171;
  cursor: not-allowed;
}

.acquia-lift-cancel-button {
  color: black;
  background: #dddddd;
  text-shadow: 0 1px 0 #f4f4f4;
}

.acquia-lift-cancel-button:hover,
.acquia-lift-cancel-button:active {
  color: #303030;
  background: #e3e3e3;
  text-shadow: 0 1px 0 #f6f6f6;
}

File

css/acquia_lift.buttons.css
View source
  1. /** Button styles from Ember theme for submit and cancel buttons **/
  2. input[type="submit"].acquia-lift-submit-button,
  3. .acquia-lift-cancel-button {
  4. -webkit-appearance: none;
  5. -moz-box-sizing: border-box;
  6. box-sizing: border-box;
  7. margin: 0.2963em;
  8. max-width: 100%;
  9. overflow: visible;
  10. line-height: 1.25em;
  11. vertical-align: baseline;
  12. border: none;
  13. -o-border-radius: 2px;
  14. border-radius: 2px;
  15. /* Reset all button fonts to a similar baseline in webkit. */
  16. font: -webkit-small-control;
  17. font-family: "Helvetica Neue", helvetica, "Segoe UI", segoe, "Ubuntu", "Droid Sans", "Arial", sans-serif;
  18. font-weight: 700;
  19. text-align: center;
  20. text-decoration: none;
  21. cursor: pointer;
  22. outline: none;
  23. padding: 0.70711em 1em;
  24. font-size: 1em;
  25. height: inherit;
  26. display: inline-block;
  27. }
  28. input[type="submit"].acquia-lift-submit-button:active {
  29. text-decoration: none;
  30. box-shadow: 0 0 0 0.2963em rgba(221, 221, 221, 0.4);
  31. }
  32. .acquia-lift-submit-button.action-item-primary-active {
  33. color: white;
  34. background: #008fdc;
  35. text-shadow: 0 1px 0 #002a42;
  36. }
  37. .acquia-lift-submit-button.action-item-primary-active:hover,
  38. .acquia-lift-submit-button.action-item-primary-active:active {
  39. color: white;
  40. background: #58b7ea;
  41. text-shadow: 0 1px 0 #1a3646;
  42. }
  43. .acquia-lift-submit-button.form-button-disabled,
  44. .acquia-lift-submit-button.form-button-disabled:active,
  45. .acquia-lift-submit-button.form-button-disabled:hover {
  46. color: #bbb;
  47. background: #717171;
  48. cursor: not-allowed;
  49. }
  50. .acquia-lift-cancel-button {
  51. color: black;
  52. background: #dddddd;
  53. text-shadow: 0 1px 0 #f4f4f4;
  54. }
  55. .acquia-lift-cancel-button:hover,
  56. .acquia-lift-cancel-button:active {
  57. color: #303030;
  58. background: #e3e3e3;
  59. text-shadow: 0 1px 0 #f6f6f6;
  60. }