Первая копия

This commit is contained in:
2020-02-27 00:28:43 +06:00
commit 925cac4752
1125 changed files with 198979 additions and 0 deletions

129
metadata/dbms/dbms.css Normal file
View File

@ -0,0 +1,129 @@
*{
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;
}
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;
}
.shadow {
box-shadow: 0 0 10px rgba(0,0,0,0.7);
}
/* Для полей состояжих из нескольких элементов (поле с кнопочкой допустим) */
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: #ffffff;
border-spacing: 1px 1px;
}
table.SEdit td,table.SEdit th {
padding: 1px;
border: 0px solid #999999;
}
table.SEdit th {
font-weight: bold;
background-color: rgb(218, 218, 218);
}
/* For table filter data whitesmoke */
table.SFilter {
border-collapse: collapse;
width: 100%;
height: 100%;
background-color:#f1f1f1;
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: rgb(218, 218, 218);
}