Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / assets / vendor / jquery.ui / themes / base / button.css
1 /*!
2  * jQuery UI Button 1.12.1
3  * http://jqueryui.com
4  *
5  * Copyright jQuery Foundation and other contributors
6  * Released under the MIT license.
7  * http://jquery.org/license
8  *
9  * http://api.jqueryui.com/button/#theming
10  */
11 .ui-button {
12         padding: .4em 1em;
13         display: inline-block;
14         position: relative;
15         line-height: normal;
16         margin-right: .1em;
17         cursor: pointer;
18         vertical-align: middle;
19         text-align: center;
20         -webkit-user-select: none;
21         -moz-user-select: none;
22         -ms-user-select: none;
23         user-select: none;
24
25         /* Support: IE <= 11 */
26         overflow: visible;
27 }
28
29 .ui-button,
30 .ui-button:link,
31 .ui-button:visited,
32 .ui-button:hover,
33 .ui-button:active {
34         text-decoration: none;
35 }
36
37 /* to make room for the icon, a width needs to be set here */
38 .ui-button-icon-only {
39         width: 2em;
40         box-sizing: border-box;
41         text-indent: -9999px;
42         white-space: nowrap;
43 }
44
45 /* no icon support for input elements */
46 input.ui-button.ui-button-icon-only {
47         text-indent: 0;
48 }
49
50 /* button icon element(s) */
51 .ui-button-icon-only .ui-icon {
52         position: absolute;
53         top: 50%;
54         left: 50%;
55         margin-top: -8px;
56         margin-left: -8px;
57 }
58
59 .ui-button.ui-icon-notext .ui-icon {
60         padding: 0;
61         width: 2.1em;
62         height: 2.1em;
63         text-indent: -9999px;
64         white-space: nowrap;
65
66 }
67
68 input.ui-button.ui-icon-notext .ui-icon {
69         width: auto;
70         height: auto;
71         text-indent: 0;
72         white-space: normal;
73         padding: .4em 1em;
74 }
75
76 /* workarounds */
77 /* Support: Firefox 5 - 40 */
78 input.ui-button::-moz-focus-inner,
79 button.ui-button::-moz-focus-inner {
80         border: 0;
81         padding: 0;
82 }