Compare commits

...

3 Commits

Author SHA1 Message Date
Robert von Burg 1859d1ab15
[New] added styling .g-table-dl to use as a <dl>:
<table class="g-table-dl">
  <tr>
    <td>label 1</td>
    <td>value 1</td>
  </tr>
  <tr>
    <td>label 2</td>
    <td>value 2</td>
  </tr>
</table>
2022-07-20 10:06:50 +02:00
Robert von Burg 35d3c93426
[Minor] Also style paper-tabs 2022-07-04 17:11:32 +02:00
Robert von Burg 760d028742
[Minor] Styling of paper-button on app-toolbar 2022-05-17 14:08:32 +02:00
3 changed files with 15 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-styles",
"description": "Strolch WebComponent Styles",
"version": "0.4.5",
"version": "0.4.8",
"authors": ["Robert von Burg"],
"keywords": [
"strolch",

View File

@ -23,6 +23,7 @@
--app-pages-content-padding: 24px;
/* additional dimensions */
--app-font-size: 14px;
--column-min-width: 80px;
--column-side-padding: 12px;
@ -80,6 +81,7 @@
}
app-toolbar > paper-button {
font-size: var(--app-font-size, 14px);
color: var(--primary-text-color);
}
@ -87,6 +89,10 @@
z-index: 10;
}
paper-tabs {
--paper-tabs-selection-bar-color: var(--app-regular-highlight-bg-color);
}
paper-menu {
--paper-menu-selected-item: {
background-color: var(--app-light-highlight-bg-color);

View File

@ -14,6 +14,14 @@
border-radius: 2px;
}
/*
* table as a data definition list. Works simpler than a dl
*/
.g-table-dl td:first-child {
text-align: right;
padding-right: 5px;
}
/*
* data definition list
*/