Explorar el Código

Fix cdb tile selector not being centered when inside props (#144)

Leonardo Jeanteur hace 4 años
padre
commit
52368348cb
Se han modificado 4 ficheros con 4 adiciones y 1 borrados
  1. 1 0
      bin/cdb.css
  2. 1 0
      bin/cdb.less
  3. 1 1
      bin/style.css
  4. 1 0
      bin/style.less

+ 1 - 0
bin/cdb.css

@@ -411,6 +411,7 @@
   background: #292929;
   border: 2px solid #555;
   color: #dadada;
+  text-align: left;
 }
 .cdb .content-modal form {
   font-size: 14px;

+ 1 - 0
bin/cdb.less

@@ -464,6 +464,7 @@
 		background: #292929;
 		border: 2px solid #555;
 		color: #dadada;
+		text-align: left;
 
 		form {
 			font-size: 14px;

+ 1 - 1
bin/style.css

@@ -183,6 +183,7 @@ input[type=checkbox]:checked:after {
 .hide-modal > .content {
   display: table-cell;
   vertical-align: middle;
+  text-align: center;
 }
 ::-webkit-scrollbar {
   width: 5px;
@@ -1797,4 +1798,3 @@ div.sp-container input:hover {
   max-height: 800px;
   min-width: 600px;
 }
-/* Monaco */

+ 1 - 0
bin/style.less

@@ -184,6 +184,7 @@ input[type=checkbox] {
 	&> .content {
 		display: table-cell;
 		vertical-align: middle;
+		text-align: center;
 	}
 }