]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Fix error message for required file
authorJeremy Thomas <bbxdesign@gmail.com>
Sun, 7 Oct 2018 10:44:42 +0000 (12:44 +0200)
committerJeremy Thomas <bbxdesign@gmail.com>
Sun, 7 Oct 2018 10:44:42 +0000 (12:44 +0200)
CHANGELOG.md
docs/css/bulma-docs.css

index 1d1674b631765067f6041fde1cc674d55584955e..aaa69f145f2d4d881120d8533cb783cd7dc44d2f 100644 (file)
@@ -28,6 +28,7 @@
 * #1908 Fix IE11 when textarea doesn't listen to `size=""`
 * Fix #1991 The last button in list of full-width buttons has longer width
 * #1982 Fix navbar-burger color when color modifier is used
+* #1819 Fix error message for required file
 
 ## 0.7.1
 
index 5d1ef88659d33e6d3495fba84c4aa21b69ab5029..6f48d20e7604b67a43d0835c1441184e85ccc25f 100644 (file)
@@ -3854,12 +3854,12 @@ a.box:active {
 }
 
 .file-input {
-  height: 0.01em;
+  height: 100%;
   left: 0;
   outline: none;
   position: absolute;
   top: 0;
-  width: 0.01em;
+  width: 100%;
 }
 
 .file-cta,
@@ -4826,6 +4826,10 @@ a.box:active {
 }
 
 .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
+  background-color: #fafafa;
+}
+
+.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
   background-color: whitesmoke;
 }