wiki-js-customization/srv/styles/template-engine.css

47 lines
862 B
CSS
Raw Normal View History

2024-03-14 18:13:52 +00:00
.template-container {
2024-03-14 21:45:50 +00:00
box-shadow: var(--container_shadow);
border-radius: 4px;
background-color: #fff;
padding: 20px;
display: flex;
flex-direction: column;
gap: 20px
2024-03-14 18:13:52 +00:00
}
2024-03-14 21:45:50 +00:00
2024-03-14 18:13:52 +00:00
.template-title {
2024-03-14 21:45:50 +00:00
font-size: 16px;
font-weight: 500
2024-03-14 18:13:52 +00:00
}
2024-03-14 21:45:50 +00:00
2024-03-14 18:13:52 +00:00
.template-input-div {
2024-03-14 21:45:50 +00:00
display: flex;
flex-direction: row;
align-items: center;
gap: 8px
2024-03-14 18:13:52 +00:00
}
2024-03-14 21:45:50 +00:00
2024-03-14 18:13:52 +00:00
.template-input {
2024-03-14 21:45:50 +00:00
border: 1px solid #999;
border-radius: 4px;
padding: 10px;
margin-bottom: 4px;
width: 100%
2024-03-14 18:13:52 +00:00
}
2024-03-14 21:45:50 +00:00
2024-03-14 18:13:52 +00:00
.template-copy-button:hover {
2024-03-14 21:45:50 +00:00
box-shadow: var(--container_shadow)
2024-03-14 18:13:52 +00:00
}
2024-03-14 21:45:50 +00:00
2024-03-14 18:13:52 +00:00
.template-copy-button:active {
2024-03-14 21:45:50 +00:00
background-color: var(--override_green_dark)
2024-03-14 18:13:52 +00:00
}
2024-03-14 21:45:50 +00:00
2024-03-14 18:13:52 +00:00
.template-copy-button {
2024-03-14 21:45:50 +00:00
background-color: var(--override_green);
color: #fff;
border: none;
border-radius: 4px;
padding: 10px;
cursor: pointer;
transition: background-color .3s
2024-03-14 18:13:52 +00:00
}