浏览代码

HUE-8413 [frontend] Remove yellow hue from the autofill inputs

(cherry picked from commit 3436dab00f32b93a733e2efc05791e33da428f90)
Enrico Berti 7 年之前
父节点
当前提交
c5ff14ab42

文件差异内容过多而无法显示
+ 0 - 0
desktop/core/src/desktop/static/desktop/css/hue-embedded.css


文件差异内容过多而无法显示
+ 0 - 0
desktop/core/src/desktop/static/desktop/css/hue.css


+ 1 - 1
desktop/core/src/desktop/static/desktop/css/login4.css

@@ -14,4 +14,4 @@ distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 See the License for the specific language governing permissions and
 limitations under the License.
 limitations under the License.
- */.login-container{-webkit-box-shadow:0 2px 8px rgba(0,0,0,0.18);-moz-box-shadow:0 2px 8px rgba(0,0,0,0.18);box-shadow:0 2px 6px 0 rgba(0,0,0,0.18),0 2px 8px 0 rgba(0,0,0,0.13)}.login-container .logo{width:200px;height:70px;text-align:center}.svg-hue-logo-main{fill:#0B7FAD}.svg-hue-logo-trunk{fill:#A37EC6}
+ */.login-container{-webkit-box-shadow:0 2px 8px rgba(0,0,0,0.18);-moz-box-shadow:0 2px 8px rgba(0,0,0,0.18);box-shadow:0 2px 6px 0 rgba(0,0,0,0.18),0 2px 8px 0 rgba(0,0,0,0.13)}.login-container .logo{width:200px;height:70px;text-align:center}.svg-hue-logo-main{fill:#0B7FAD}.svg-hue-logo-trunk{fill:#A37EC6}@-webkit-keyframes autofill{to{background:transparent}}:-webkit-autofill{-webkit-animation-name:autofill;-webkit-animation-fill-mode:both}

+ 11 - 0
desktop/core/src/desktop/static/desktop/less/hue4.less

@@ -892,3 +892,14 @@ a:visited {
     }
     }
   }
   }
 }
 }
+
+@-webkit-keyframes autofill {
+  to {
+    background: transparent;
+  }
+}
+
+:-webkit-autofill {
+  -webkit-animation-name: autofill;
+  -webkit-animation-fill-mode: both;
+}

+ 11 - 0
desktop/core/src/desktop/static/desktop/less/login4.less

@@ -33,3 +33,14 @@
 .svg-hue-logo-trunk {
 .svg-hue-logo-trunk {
   fill: @hue-trunk;
   fill: @hue-trunk;
 }
 }
+
+@-webkit-keyframes autofill {
+  to {
+    background: transparent;
+  }
+}
+
+:-webkit-autofill {
+  -webkit-animation-name: autofill;
+  -webkit-animation-fill-mode: both;
+}

部分文件因为文件数量过多而无法显示