Commit 7aa50c66 authored by carlosperate's avatar carlosperate

Materialize update fixes reinsertion of caret icons in forms.

parent a1695d0e
...@@ -4,4 +4,4 @@ This folder contains the CSS and Javascript for the Materialize CSS framework. ...@@ -4,4 +4,4 @@ This folder contains the CSS and Javascript for the Materialize CSS framework.
https://github.com/Dogfalo/materialize https://github.com/Dogfalo/materialize
Current version used: 0.97.0 [@ffdaff79411223ab4c7f3f92a071fcf3c2d72ed4 commit](https://github.com/Dogfalo/materialize/commit/ffdaff79411223ab4c7f3f92a071fcf3c2d72ed4) Current version used: >0.97.0 [@c996377381fc35b4230974d3ec28e4c430a7a0b3 commit](https://github.com/Dogfalo/materialize/commit/c996377381fc35b4230974d3ec28e4c430a7a0b3)
/*!
* Materialize v0.97.0 (http://materializecss.com)
* Copyright 2014-2015 Materialize
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
*/
.materialize-red.lighten-5 { .materialize-red.lighten-5 {
background-color: #fdeaeb !important; } background-color: #fdeaeb !important; }
...@@ -5683,6 +5678,7 @@ small { ...@@ -5683,6 +5678,7 @@ small {
float: right; } } float: right; } }
.tabs { .tabs {
display: flex;
position: relative; position: relative;
height: 48px; height: 48px;
background-color: #fff; background-color: #fff;
...@@ -5690,6 +5686,10 @@ small { ...@@ -5690,6 +5686,10 @@ small {
width: 100%; width: 100%;
white-space: nowrap; } white-space: nowrap; }
.tabs .tab { .tabs .tab {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: block; display: block;
float: left; float: left;
text-align: center; text-align: center;
...@@ -6312,11 +6312,11 @@ input[type=text], input[type=password], input[type=email], input[type=url], inpu ...@@ -6312,11 +6312,11 @@ input[type=text], input[type=password], input[type=email], input[type=url], inpu
border: 0; border: 0;
box-shadow: none; box-shadow: none;
color: #444; } color: #444; }
.input-field input[type=search]:focus + label i, .input-field input[type=search]:focus ~ .mdi-navigation-close { .input-field input[type=search]:focus + label i, .input-field input[type=search]:focus ~ .mdi-navigation-close, .input-field input[type=search]:focus ~ .material-icons {
color: #444; } color: #444; }
.input-field input[type=search] + label { .input-field input[type=search] + label {
left: 1rem; } left: 1rem; }
.input-field input[type=search] ~ .mdi-navigation-close { .input-field input[type=search] ~ .mdi-navigation-close, .input-field input[type=search] ~ .material-icons {
position: absolute; position: absolute;
top: 0; top: 0;
right: 1rem; right: 1rem;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment