Files
Metadata_PHP/metadata/dbms/dbms.css
2020-08-07 16:47:41 +06:00

145 lines
2.9 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

*{
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
html,body
{
height:100%;
min-height:100%;
margin: 0px 0px;
padding: 0px;
font-size: 14px;
font-family: Arial;
background-color: var(--back-color);
}
input,textarea
{
margin: 0px 0px;
}
select
{
display: block;
-moz-box-sizing: content-box;
-webkit-box-sizing:content-box;
/*box-sizing:content-box;*/
box-sizing: border-box;
}
/*Над всеми по Z*/
#menu
{
padding:0px;
position:fixed;
left:1px;
top:1px;
height:34px;
width:70px;
border:1px solid #000000;
display:block;
text-decoration:none;
z-index: 99999
}
/* Для элементов выступающих в роли кнопок */
.button {
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
-o-user-select: none; /* No support for these yet, use at own risk */
user-select: none; /* No support for these yet, use at own risk */
display: inline-block;
/*display: table;*/
cursor: pointer;
/*hite-space: nowrap;*/
text-align: center;
}
input[type="text"], input[type="password"], textarea, select {
background-color : var(--back-color3);
border-color: rgb(195, 195, 195);
border-width: 1px;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
outline: none !important;
border-color: rgb(195, 195, 195);
border-width: 1px;
box-shadow: 0 0 4px var(--box-shadow-color);
}
/*Стили для таблицы которая исполняет роль окна*/
.shadow {
box-shadow: 0 0 10px var(--box-shadow-color);
background-color: var(--back-color);
color: var(--main-font-color);
}
/* Для полей состояжих из нескольких элементов (поле с кнопочкой допустим) */
table.DBMSSimple {
width: 100%;
height: 100%;
}
table.DBMSSimple td,table.DBMSSimple th {
padding: 0px;
border: 0px solid #999999;
}
/* For table show data */
table.SEdit {
border-collapse: collapse;
border: 1px double #999999;
width: 100%;
background-color: var(--back-color);
border-spacing: 1px 1px;
}
table.SEdit td,table.SEdit th {
padding: 1px;
border: 0px solid #999999;
}
table.SEdit th {
font-weight: bold;
background-color: var(--header-color);
}
/* For table filter data whitesmoke */
table.SFilter {
border-collapse: collapse;
width: 100%;
height: 100%;
background-color: var(--back-color);
border-spacing: 1px 1px;
}
table.SFilter td {
padding: 1px;
border: 0px solid #999999;
}
/* For table show data */
table.SShow {
border-collapse: collapse;
border: 1px double #999999;
width: 100%;
background-color: #ffffff;
border-spacing: 1px 1px;
}
table.SShow td,table.SShow th {
border: 1px solid #999999;
}
table.SShow th {
font-weight: bold;
background-color: var(--header-color);
}