Compare commits

...

2 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
3 changed files with 13 additions and 1 deletions

View File

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

View File

@ -89,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
*/