]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/css/press-this-rtl.css
WordPress 4.5
[autoinstalls/wordpress.git] / wp-admin / css / press-this-rtl.css
index 53d95c7354ea593ee2152a43eb50c6982f94da75..7caf0c4a0478664af24e40a905b942756e70e3fc 100644 (file)
@@ -245,6 +245,19 @@ th {
        padding: 0;
 }
 
+::-webkit-input-placeholder {
+       color: #72777c;
+}
+
+::-moz-placeholder {
+   color: #72777c;
+   opacity: 1;
+}
+
+:-ms-input-placeholder {
+       color: #72777c;
+}
+
 .clearfix:before,
 .clearfix:after {
        content: "";
@@ -775,7 +788,6 @@ dd {
 .ac_results li {
        padding: 6px 16px;
        white-space: nowrap;
-       color: #101010;
        text-align: right;
 }
 
@@ -1198,7 +1210,7 @@ html {
 }
 
 .adminbar .dashicons {
-       color: #999;
+       color: #a0a5aa; /* same as WP admin bar icons */
 }
 
 .press-this .adminbar button {
@@ -1368,7 +1380,7 @@ html {
        bottom: 0;
        padding: 0 1.07143em;
        background: #f7f7f7;
-       border-color: #dedede;
+       border-color: #ddd;
        border: 0;
        border-right: 1px solid #f1f1f1;
        -webkit-border-radius: 0;
@@ -1547,7 +1559,7 @@ html {
 .post-title-placeholder {
        position: absolute;
        border: 0;
-       color: #9ea7af;
+       color: #82878c;
        z-index: -1;
 }
 
@@ -2158,3 +2170,40 @@ html {
        background: #fff;
        border-color: #d8d8d8;
 }
+
+/* Inline link dialog */
+.wp-link-input input {
+       border: 1px solid #ddd;
+    -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
+    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
+    background-color: #fff;
+    color: #32373c;
+    outline: none;
+    -webkit-transition: 0.05s border-color ease-in-out;
+    transition: 0.05s border-color ease-in-out;
+}
+
+/* UI Autocomplete (for inline link and wpLink) */
+.ui-autocomplete {
+       padding: 0;
+       margin: 0;
+       list-style: none;
+       position: absolute;
+       z-index: 10000;
+       border: 1px solid #5b9dd9;
+       -webkit-box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
+       box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
+       background-color: #fff;
+}
+
+.ui-autocomplete li {
+       margin-bottom: 0;
+       padding: 4px 10px;
+       white-space: nowrap;
+       text-align: right;
+}
+
+.ui-autocomplete li.ui-state-focus {
+       background-color: #ddd;
+       cursor: pointer;
+}