This commit is contained in:
vinicius.reif 2019-09-16 13:34:35 -03:00
parent e175f648a1
commit 1a8bbc77c0
5 changed files with 29 additions and 35 deletions

13
dist/tuicss.css vendored
View File

@ -527,9 +527,6 @@ input, select, textarea {
.white-border-hover:hover { .white-border-hover:hover {
border-color: white !important; } border-color: white !important; }
.tui-no-padding {
padding: 0px !important; }
.left { .left {
float: left !important; } float: left !important; }
@ -584,10 +581,16 @@ input, select, textarea {
.static { .static {
position: static !important; } position: static !important; }
.tui-content { .no-shadow {
box-shadow: none !important; }
.no-padding {
padding: 0px !important; }
.content {
padding: 12px; } padding: 12px; }
.tui-disable-select { .disable-select {
user-select: none; user-select: none;
-webkit-user-select: none; -webkit-user-select: none;
-khtml-user-select: none; -khtml-user-select: none;

2
dist/tuicss.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" class=""> <html lang="en" class="white-168">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
@ -9,29 +9,18 @@
<script src="plugins/jquery-3.4.1.min.js"></script> <script src="plugins/jquery-3.4.1.min.js"></script>
<script src="../dist/tuicss.min.js"></script> <script src="../dist/tuicss.min.js"></script>
<link rel="stylesheet" href="../dist/tuicss.min.css"> <link rel="stylesheet" href="../dist/tuicss.min.css">
<style>
</style>
</head> </head>
<body> <body>
<div class="tui-window">
<table class="tui-table"> <fieldset class="tui-fieldset">
<thead> <legend class="center">MYAPP.CPP</legend>
<tr> <textarea class="tui-textarea" rows="4" style="overflow: scroll;">text
<th>...</th> </textarea>
</tr> </fieldset>
</thead> </div>
<tbody>
<tr>
<td>...</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>...</td>
</tr>
</tfoot>
</table>
</nav>
</body> </body>

View File

@ -52,7 +52,7 @@
.purple-168 {background-color: rgb(168, 0, 168)!important} .purple-168 {background-color: rgb(168, 0, 168)!important}
.yellow-168 {background-color: rgb(168, 168, 0)!important} .yellow-168 {background-color: rgb(168, 168, 0)!important}
.white-168 {background-color: rgb(168, 168, 168)!important} .white-168 {background-color: rgb(168, 168, 168)!important}
.orange-168 {background-color: rgb(168, 86, 0)!important} .orange-168 {background-color: rgb(168, 86, 0)!important}
.black-168-text {color: rgb(0, 0, 0)!important} .black-168-text {color: rgb(0, 0, 0)!important}
.blue-168-text {color: rgb(0, 0, 168)!important} .blue-168-text {color: rgb(0, 0, 168)!important}
@ -113,7 +113,7 @@
.purple-255 {background-color: rgb(255, 0, 255)!important} .purple-255 {background-color: rgb(255, 0, 255)!important}
.yellow-255 {background-color: rgb(255, 255, 0)!important} .yellow-255 {background-color: rgb(255, 255, 0)!important}
.white-255 {background-color: rgb(255, 255, 255)!important} .white-255 {background-color: rgb(255, 255, 255)!important}
.orange-255 {background-color: rgb(255, 168, 0)!important} .orange-255 {background-color: rgb(255, 168, 0)!important}
.black-255-text {color: rgb(0, 0, 0)!important} .black-255-text {color: rgb(0, 0, 0)!important}
.blue-255-text {color: rgb(0, 0, 255)!important} .blue-255-text {color: rgb(0, 0, 255)!important}

View File

@ -1,9 +1,5 @@
@import '../mixins.scss'; @import '../mixins.scss';
.tui-no-padding {
padding: 0px!important;
}
.left { .left {
float: left!important; float: left!important;
} }
@ -63,10 +59,16 @@
position: static!important; position: static!important;
} }
.tui-content { .no-shadow {
box-shadow: none!important;
}
.no-padding {
padding: 0px!important;
}
.content {
padding: 12px; padding: 12px;
} }
.tui-disable-select { .disable-select {
@include disable-select; @include disable-select;
} }