Skip to content

Commit

Permalink
Append Table issue resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantFarakate committed Oct 5, 2023
1 parent 03a0300 commit 2a9d5e1
Show file tree
Hide file tree
Showing 7 changed files with 555 additions and 609 deletions.
174 changes: 90 additions & 84 deletions src/app/create-template/create-template.component.css
Original file line number Diff line number Diff line change
@@ -1,75 +1,75 @@
.container{
.container {
display: flex;
font-family: "Arial", sans-serif;
font-size: 14px;
font-size: 14px;
}

.icons{
.icons {
margin-left: 5px;
margin-right: 5px;
margin-right: 5px;
}

.templateForm{
.templateForm {
flex: 1;
margin-top: 5px;
margin-left: 5px;
/* width: 70%; */

}

.pagination-table {
border-collapse: collapse;
border: none;
width: 60%;
}

.pagination-table td {
border: none;
padding: 4px 2px; /* Spacing inside each cell */
}

.input-container{
z-index: 1;
margin-right: 5px;
padding: 10px;
display: flex;
/* background-color: #fcfcfc; */
/* flex-direction:column; */
}

.tables-container {
display: flex;
justify-content: space-between;
}
.table-container {
width: 50%;
overflow-x: auto;
}

.field-container {
display: flex;
justify-content: space-between;
}
.fc {
width: 50%;
overflow-x: auto;
}




.input-box{
margin-left: 5px;
}

.pagination-table {
border-collapse: collapse;
border: none;
width: 60%;
}

.pagination-table td {
border: none;
padding: 4px 2px;
/* Spacing inside each cell */
}

.input-container {
z-index: 1;
margin-right: 5px;
padding: 10px;
display: flex;
/* background-color: #fcfcfc; */
/* flex-direction:column; */
}

.tables-container {
display: flex;
justify-content: space-between;

}

.table-container {
width: 50%;
overflow-x: auto;
}

.field-container {
display: flex;
justify-content: space-between;
}

.fc {
width: 50%;
overflow-x: auto;
}





.input-box {
width: 200px;
height: 15px;
margin-left: 5px;
margin-right: 5px;
}


.viewTemp{
.viewTemp {
min-height: 50px;
z-index: 2;
flex: .5;
Expand All @@ -78,32 +78,36 @@
/* float: right; */
/* width: 300px; */
/* background-color: aqua; */
}

.view_icon{
padding: 5px;
float: right;
font-size: 20px;
}
.view_icon {
padding: 5px;
float: right;
font-size: 20px;
}

.scrollable-card{
max-height: 430px;
overflow-y: auto; /* this will enable vertical scrolling when the content is larger than the max-height */
.scrollable-card {
max-height: 430px;
overflow-y: auto;
/* this will enable vertical scrolling when the content is larger than the max-height */
padding: 15px;
box-sizing: border-box;
width: 420px;
width: 420px;
overflow-x: auto;
}

.Button{
.Button {
width: 20%;
height: 25px;
margin-left: 2px;
margin-right: 2px;

}

.docBtnAdd:hover, .pageBtnAdd:hover, .fieldBtnAdd:hover, .colBtnAdd:hover{
.docBtnAdd:hover,
.pageBtnAdd:hover,
.fieldBtnAdd:hover,
.colBtnAdd:hover {
background-color: rgba(1, 111, 246, 0.831);
border: none;
padding: 3px 8px;
Expand All @@ -114,7 +118,8 @@
margin: 5px;
} */

.docBtnDel:hover, .pageBtnDel:hover{
.docBtnDel:hover,
.pageBtnDel:hover {
background-color: #ff0606;
border: none;
padding: 3px 8px;
Expand All @@ -137,24 +142,32 @@
}

.field {
flex: 0 0 calc(33.3333% - 10px); /* creates a 3-column layout */
flex: 0 0 calc(33.3333% - 10px);
/* creates a 3-column layout */
margin: 5px;
padding: 10px;
border: 1px solid #ccc;
}

table {
/* width: 50%; */
border-collapse: collapse; /* collapse borders into a single line */
border-collapse: collapse;
/* collapse borders into a single line */
}

table, th, td {
border: 1px solid black; /* apply border to table and cells */
table,
th,
td {
border: 1px solid black;
/* apply border to table and cells */
}

th, td {
padding: 5px; /* add padding to cells */
text-align: left; /* align text to the left */
th,
td {
padding: 5px;
/* add padding to cells */
text-align: left;
/* align text to the left */
}


Expand All @@ -167,11 +180,4 @@ input[type="number"] {

input {
border: ridge;
}







}
Loading

0 comments on commit 2a9d5e1

Please sign in to comment.