|
68 | 68 |
|
69 | 69 | // Refactor buttons when button mixins and/or style guide is done
|
70 | 70 | .introjs-button {
|
71 |
| - @extend .tc-btn !optional; |
72 |
| - @extend .tc-btn-s !optional; |
| 71 | + height: 30px; |
| 72 | + padding: 0 10px; |
| 73 | + line-height: 28px; |
| 74 | + border-radius: 3px; |
| 75 | + border: 1px solid $primary; |
| 76 | + background-color: $primary; |
| 77 | + background-image : none; |
| 78 | + @include font-with-weight('Sofia Pro', 500); |
| 79 | + font-size: 12px; |
| 80 | + font-style: normal; |
| 81 | + color: $white; |
| 82 | + text-transform: uppercase; |
| 83 | + outline: none; |
| 84 | + text-shadow: none; |
| 85 | + |
| 86 | + &:visited { |
| 87 | + |
| 88 | + } |
| 89 | + |
| 90 | + &:focus { |
| 91 | + border: 1px solid $primary; |
| 92 | + background-image: none; |
| 93 | + background-color: $primary; |
| 94 | + color: $white; |
| 95 | + } |
| 96 | + |
| 97 | + &:hover { |
| 98 | + background-color: $primary-dark; |
| 99 | + border-color: $primary-dark; |
| 100 | + color: $white; |
| 101 | + } |
| 102 | + |
| 103 | + &:active { |
| 104 | + background-color: $primary-dark; |
| 105 | + background-image : none; |
| 106 | + border-color: $primary-dark; |
| 107 | + box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.30); |
| 108 | + line-height: 29px; |
| 109 | + } |
| 110 | + |
| 111 | + &:disabled { |
| 112 | + opacity: .3; |
| 113 | + cursor: default; |
| 114 | + } |
73 | 115 | }
|
74 | 116 |
|
75 | 117 | .introjs-skipbutton {
|
76 |
| - @extend .tc-btn-ghost !optional; |
77 | 118 | float: left;
|
| 119 | + color: $primary; |
| 120 | + background-color: $white; |
| 121 | + |
| 122 | + &:hover { |
| 123 | + color: $white; |
| 124 | + border-color: $primary; |
| 125 | + background-color: $primary; |
| 126 | + } |
| 127 | + |
| 128 | + &:active { |
| 129 | + color: $white; |
| 130 | + border-color: $primary-dark; |
| 131 | + background-color: $primary-dark; |
| 132 | + box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.30); |
| 133 | + } |
| 134 | + |
| 135 | + &:disabled { |
| 136 | + border-color: $gray-dark; |
| 137 | + color: $gray-dark; |
| 138 | + } |
78 | 139 | }
|
79 | 140 |
|
80 | 141 |
|
81 | 142 | .introjs-disabled {
|
82 |
| - @extend .tc-btn-s !optional; |
83 |
| - @extend :disabled !optional; |
| 143 | + height: 30px; |
| 144 | + padding: 0 10px; |
| 145 | + line-height: 28px; |
| 146 | + font-size: 12px; |
| 147 | + font-weight: 500; |
| 148 | + opacity: .3; |
| 149 | + cursor: default; |
| 150 | + |
| 151 | + &:active { |
| 152 | + line-height: 29px; |
| 153 | + } |
84 | 154 | }
|
85 | 155 |
|
86 | 156 | .introjs-prevbutton {
|
|
0 commit comments