~canonical-sysadmins/wordpress/5.1

« back to all changes in this revision

Viewing changes to wp-includes/css/wp-auth-check.css

  • Committer: Nick Moffitt
  • Date: 2016-04-14 10:43:32 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: nick.moffitt@canonical.com-20160414104332-61kvsia27qpmjquk
new upstream release 4.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
}
49
49
 
50
50
#wp-auth-check-wrap #wp-auth-check-form {
51
 
        background: url(../images/spinner-2x.gif) no-repeat center center;
52
 
        -webkit-background-size: 16px 16px;
53
 
        background-size: 16px 16px;
54
51
        height: 100%;
 
52
        position: relative;
55
53
        overflow: auto;
56
54
        -webkit-overflow-scrolling: touch;
57
55
}
58
56
 
 
57
#wp-auth-check-form.loading:before {
 
58
        content: "";
 
59
        display: block;
 
60
        width: 20px;
 
61
        height: 20px;
 
62
        position: absolute;
 
63
        left: 50%;
 
64
        top: 50%;
 
65
        margin: -10px 0 0 -10px;
 
66
        background: url(../images/spinner.gif) no-repeat center;
 
67
        -webkit-background-size: 20px 20px;
 
68
        background-size: 20px 20px;
 
69
        -webkit-transform: translateZ(0);
 
70
        transform: translateZ(0);
 
71
}
 
72
 
 
73
@media print,
 
74
  (-webkit-min-device-pixel-ratio: 1.25),
 
75
  (min-resolution: 120dpi) {
 
76
 
 
77
        #wp-auth-check-form.loading:before {
 
78
                background-image: url(../images/spinner-2x.gif);
 
79
        }
 
80
 
 
81
}
 
82
 
59
83
#wp-auth-check-wrap #wp-auth-check-form iframe {
60
84
        height: 98%; /* Scrollbar fix */
61
85
        width: 100%;
63
87
 
64
88
#wp-auth-check-wrap .wp-auth-check-close {
65
89
        position: absolute;
66
 
        top: 8px;
67
 
        right: 8px;
 
90
        top: 5px;
 
91
        right: 5px;
68
92
        height: 22px;
69
93
        width: 22px;
70
 
        cursor: pointer;
 
94
        color: #72777c;
71
95
}
72
96
 
73
97
#wp-auth-check-wrap .wp-auth-check-close:before {
74
98
        content: "\f158";
75
 
        display: block !important;
76
 
        font: normal 20px/1 dashicons;
 
99
        font: normal 20px/22px dashicons;
77
100
        speak: none;
78
 
        height: 22px;
79
 
        margin: 2px 0;
80
 
        text-align: center;
81
 
        width: 22px;
82
 
        color: #777;
83
101
        -webkit-font-smoothing: antialiased !important;
84
102
        -moz-osx-font-smoothing: grayscale;
85
103
}
86
104
 
87
 
#wp-auth-check-wrap .wp-auth-check-close:hover:before {
 
105
#wp-auth-check-wrap .wp-auth-check-close:hover,
 
106
#wp-auth-check-wrap .wp-auth-check-close:focus {
88
107
        color: #0073aa;
89
108
}
90
109
 
91
 
#wp-auth-check-wrap .wp-auth-check-close:focus {
92
 
        outline: 1px dotted #82878c;
93
 
}
94
 
 
95
110
#wp-auth-check-wrap .wp-auth-fallback-expired {
96
111
        outline: 0;
97
112
}