Support des propriétés d'items

Amélioration de l'interface
Améliorations cosmétiques
This commit is contained in:
ZigmundKreud
2021-12-24 04:51:14 +01:00
parent d5a5990faa
commit 7531937e52
59 changed files with 1919 additions and 210 deletions

View File

@@ -1,6 +1,8 @@
@import "global/typography";
@import 'global/foundry-overrides';
@import 'global/mixins';
@import "global/flex";
@import "global/forms";
@import "global/typography";
@import "global/item-list";
@import "global/colors";
@import 'global/chat';
@@ -14,7 +16,18 @@
@footer-height: 30px;
@sidebar-width: 250px;
body.system-bol {
img#logo{
content: url("/systems/bol/ui/logo2.webp");
}
}
.bol {
//&.app {
//border:none;
//background: transparent;
//box-shadow: none;
//}
&.sheet {
@import 'components/common';
&.actor {

View File

@@ -1,14 +1,10 @@
.window-content {
form {
background-image: url("/systems/bol/ui/logo.webp");
background-repeat: no-repeat;
background-size: @logo-width @logo-height;
background-color: white;
.sidebar {
//background-color: green;
//background-color: red;
padding-top: @logo-height;
min-width: @sidebar-width;
width: @sidebar-width;
@@ -29,8 +25,6 @@
.sheet-body {
overflow: hidden;
.tab {
height: 100%;
overflow-y: auto;
.attribute {
&.vigor {
background-image: url("/systems/bol/ui/attributes/vigor.webp");

View File

@@ -1,10 +1,19 @@
.window-header {
border:none;
}
.window-content {
//background: white;
height: 100%;
padding: 5px;
padding: 10px;
overflow-y: hidden;
background: transparent;
form {
border: 10px solid transparent;
border-image: url("/systems/bol/ui/box-border-large.webp") 108/3 repeat;
border-image-outset: 1;
background: white;
margin:0;
padding:0;
height: 100%;
.sheet-header {
//background-color: red;
@@ -54,15 +63,16 @@
.main {
/* Sheet Tabs */
.tabs {
flex: 0 0 40px;
flex: 0 0 30px;
background-color: black;
.item {
line-height: 40px;
line-height: 30px;
font-weight: bold;
font-family: @font-handwrite;
color: white;
font-size: 14px;
padding-top: 4px;
font-size: 0.8em;
}
.item.active {
@@ -75,7 +85,8 @@
overflow: hidden;
.tab {
height: 100%;
height: 95%;
border:none;
overflow-y: auto;
/* Items List */
&.description {

View File

@@ -17,9 +17,9 @@ h1 {
line-height: 20px;
}
input {
text-align: right;
}
//input {
// text-align: right;
//}
}
.properties-list {

View File

@@ -24,3 +24,59 @@
font-weight: bold;
}
}
.chat-message {
margin: 3px;
padding: 10px;
font-size: 14px;
border-radius : 0;
background-color: white;
background-image: url("/systems/bol/ui/box-border-large.webp");
background-repeat: no-repeat;
background-size: 100% 100%;
.message-header {
.flavor-text {
font-family: @font-special;
font-size: 14px;
h2 {
font-family: @font-special2;
font-size: 20px;
}
}
}
.message-content {
.dice-roll {
.dice-result {
.dice-formula {
border-radius: 0px;
border: 1px inset lightgray;
background-color: #282828;
color: white;
}
.dice-tooltip {
.tooltip-part {
.part-formula {
//display: none;
}
.part-total {
border-radius: 0px;
border: 1px inset lightgray;
background-color: #2a2a2a;
color: white;
}
}
}
.dice-total {
border-radius: 0px;
border: 1px inset lightgray;
background-color: #2a2a2a;
color: white;
}
}
}
}
// color: #191813;
// background: url(../bol/ui/box-border-large.webp) no-repeat;
// border: 2px solid #6f6c66;
// border-radius: 5px;
}

View File

@@ -49,6 +49,7 @@
}
select {
box-shadow: none;
font-size: 14px;
text-align: center;
text-align-last: center;
@@ -61,7 +62,7 @@
select[multiple]{
box-shadow: none;
border: none;
font-size: 12px;
font-size: 14px;
&:focus {
option:checked {
background: @c-darkred linear-gradient(0deg, @c-darkred 0%, @c-darkred 100%);
@@ -69,6 +70,10 @@
}
}
}
option {
font-size: 14px;
.ellipsis();
}
option:hover,
option:focus,
option:active,
@@ -153,6 +158,9 @@
}
}
.field-value {
text-align: center;
}
}
// Stacked Groups
@@ -170,13 +178,43 @@
}
.form-header {
margin: 0 0 0.25em 0;
padding: 2px 0;
//border-top: $borderGroove;
//border-bottom: $borderGroove;
//font-family: $font-tertiary;
font-size: 20px;
margin: 0.25em 0 0.25em 0;
padding: 2px 5px;
//font-family: @font-special2;
//border-top: @borderGroove;
//border-bottom: @borderGroove;
font-family: @font-tertiary;
color: @colorOlive;
background-color: lightgray;
}
h1.form-header {
font-size: 2.5em;
font-weight: 700;
//color : black;
}
h2.form-header {
font-size: 2em;
font-weight: 500;
//color : black;
//border-top: @borderGroove;
border-bottom: @borderGroove;
}
h3.form-header {
font-size: 1.5em;
font-weight: 500;
//color : black;
//border-top: @borderGroove;
border-bottom: @borderGroove;
}
h4.form-header {
font-size: 1em;
font-weight: 500;
font-family: @font-primary;
color : black;
background-color: transparent;
border-top: none;
border-bottom: @borderGroove;
}
.tag {

View File

@@ -0,0 +1,364 @@
//.window-app .window-header a.header-button {
// @mixin hoverWidth($class) {
// &.#{$class}:hover {
// max-width: 200px;
// color: #292929f0;
// }
// }
// display: flex;
// flex-flow: row-reverse;
// align-items: center;
// max-width: 34px;
// height: 26px;
// white-space: nowrap;
// line-height: 1;
// overflow: hidden;
// padding: 0 6px;
// margin: 0 0 0 4px;
// color: transparent;
// transition: max-width 1s ease;
// @include hoverWidth("char-gen");
// @include hoverWidth("custom-roll");
// @include hoverWidth("push-roll");
// @include hoverWidth("configure-sheet");
// @include hoverWidth("configure-token");
// @include hoverWidth("item-post");
// @include hoverWidth("share-image");
// @include hoverWidth("entry-text");
// @include hoverWidth("entry-image");
// @include hoverWidth("close");
// > i {
// font-size: var(--font-size--default);
// margin-left: 10px;
// margin-top: 2px;
// color: #292929f0;
// }
//}
/* -------------- */
/* Font Awesome */
/* Overrides */
/* -------------- */
//.fa-suitcase {
// font-family: RPGAwesome;
// font-size: 1.6rem;
// transform: translateY(1px);
// &:before {
// content: "\ea72";
// }
//}
//.fa-comments {
// font-family: RPGAwesome;
// font-size: 1.5rem;
// transform: translateY(1px);
// &:before {
// content: "\ea8f";
// }
//}
//.fa-fist-raised {
// font-family: Swordlings;
// transform: translate(1.3px, -0.6px);
// font-size: 1.5rem;
// &:before {
// content: "x";
// }
//}
/* ------------- */
//h3 {
// &.entity-name {
// & > a {
// color: #111;
// text-shadow: 0px 0px 5px #fff;
// font-weight: bold;
// text-transform: uppercase;
// margin: 2%;
// }
// }
//}
//.window-app {
// .window-content {
// padding: 2px 4px;
// }
// .window-resizable-handle {
// background: none;
// border: none;
// width: 19px;
// height: 19px;
// transform: translate(12px, 12px);
//
// &:hover {
// text-shadow: 0 0 5px #a00;
// }
//
// i.fas {
// transform: translateY(-1.5px) rotate(45deg);
// }
// }
// &.image-popout {
// form.flexcol {
// background: #fff;
// }
// .form-group {
// &.title {
// input {
// font-family: "IM FELL THREE LINE PICA";
// font-size: var(--font-size--extra-large);
// text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
// text-transform: uppercase;
// border: none;
// }
// }
// &.picker {
// opacity: 0.2;
// }
// input,
// button {
// background: #999;
// }
// }
// }
// .window-header {
// border: none;
// }
// &.minimized {
// .window-header {
// border: none;
// margin-top: -10px;
// display: flex;
// align-items: center;
// line-height: 1.5;
// padding: unset;
// .window-title {
// overflow: hidden;
// white-space: pre;
// }
// }
// }
// // Override weirdly big settings input box for numbers
// &#client-settings .settings-list input[data-dtype="Number"] {
// max-width: 3rem;
// text-align: center;
// }
//}
//body,
//button {
// font-family: Poppins, sans-serif;
// font-size: var(--font-size--small);
//}
//img {
// border: none;
// &.profile {
// padding: 5px;
// }
//}
//
//.app,
//#hotbar .macro,
//#hotbar .macro .macro-key,
//#hotbar .bar-controls,
//#controls .scene-control,
//#controls .control-tool,
//#navigation #nav-toggle,
//#navigation #scene-list .scene {
// background: #292929f0;
//}
a.entity-link,
a.inline-roll {
border: none;
background: transparent;
border-bottom: 1px dotted grey;
padding: 0;
}
a {
&.inline-roll {
border: none;
}
&:hover {
text-shadow: 0 0 5px #a00;
}
}
#pause {
background: none;
& > img {
width: 200px;
height: 200px;
top: -50px;
left: calc(50% - 100px);
opacity: 0.7;
-webkit-animation: rotation 10s infinite linear;
animation: rotation 10s infinite linear;
}
h3 {
font-family: @font-special;
font-size: 32px;
text-shadow: 0px 3px 5px rgba(0, 0, 0, 1);
}
}
//#navigation {
// left: 180px;
//}
//#scenes {
// .scene {
// h3 {
// background-color: #cccccc60;
// white-space: pre-wrap;
// line-height: 1;
// display: grid;
// & > a {
// place-self: center;
// }
// }
// }
//}
//#chat-log {
// .message {
// position: relative;
// &:after {
// content: "";
// border: 10px solid transparent;
// border-image: url(../assets/journal-art/small-border.webp) 100/10px repeat;
// position: absolute;
// height: calc(100% - 24px);
// width: calc(100% - 24px);
// margin: -3px 7px 7px -3px;
// pointer-events: none;
// }
// }
//}
//.chat-message {
// font-size: var(--font-size--very-small);
// .message-header {
// padding: 8px 13px;
// border-bottom: rgba(0, 0, 0, 0.2);
// }
// .message-content {
// border: none;
// padding: 0 13px 13px;
// }
//}
//#playlists {
// li {
// &.playlist {
// .sound-control {
// color: #666;
// }
// }
// }
//}
//form {
// & > select[name="folder"] {
// display: none;
// }
// & > .lightbox-image {
// background: rgb(255, 255, 255);
// }
//}
//.window-app.image-popout .form-group.picker:hover,
//.window-app.image-popout .form-group.picker:focus-within {
// opacity: 1;
//}
//li {
// &.directory-item {
// &.entity {
// background: #eee;
// color: #222;
// border-radius: 6px;
// margin: 0 6px;
// }
// }
//}
//
//.sheet .tabs .item {
// white-space: nowrap;
//}
//
//.app.sidebar-popout .folder > .folder-header .create-folder,
//.app.sidebar-popout li.folder > .folder-header .create-entity {
// color: #444;
//}
//
//#player-config {
// .avatar {
// border: 2px dotted #444;
// border-image: url(../assets/journal-art/small-border.webp) 100/10px repeat;
// }
// .directory-item.context {
// border-top: 1px solid black;
// border-bottom: 1px solid #666;
// background: #ccc;
// h3.entity-name > a {
// font-weight: 600;
// }
// }
// h3.entity-name > a {
// font-weight: 400;
// font-size: 1.2rem;
// &:hover {
// text-shadow: 0 0 6px #333;
// }
// }
//}
//
//#sidebar-tabs {
// border-bottom: 1px solid #fff;
// box-shadow: 0 0 6px #fff;
//
// & > .item.active {
// border: 1px solid #fff;
// box-shadow: 0 0 6px inset #fffc;
// }
//}
//
//#navigation #scene-list .scene.view,
//#navigation #scene-list .scene.context {
// border: 1px solid #fff;
// border-bottom: 1px solid #fffc;
// box-shadow: 0 0 10px #fffc;
//}
//
//#controls .scene-control.active,
//#controls .control-tool.active,
//#controls .scene-control:hover,
//#controls .control-tool:hover {
// border: 1px solid #fff;
// border-bottom: 1px solid #fffc;
// box-shadow: 0 0 10px #fffc;
//}
//
//#controls .control-tool.toggle {
// background: #666;
// border: 1px solid #fff;
//
// &:hover,
// &.active {
// background: #700;
// }
//}
// Fixing scrollbars!
::-webkit-scrollbar-thumb {
outline: none;
border-radius: 3px;
background: #999 !important;
border: 1px solid #333 !important;
border-color: #333 !important;
}
::-webkit-scrollbar-track {
box-shadow: 0 0 3px #005d67 inset !important;
border-radius: 3px;
}
* {
scrollbar-width: thin !important;
scrollbar-color: #005d67 #ccc !important;
}

48
styles/global/mixins.less Normal file
View File

@@ -0,0 +1,48 @@
.element-invisible {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
clip: rect(0 0 0 0);
overflow: hidden;
}
.hide {
display: none;
}
.ellipsis {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.nomargin {
margin:0;
padding: 0;
}
.flxrow {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
> * {
flex: 1;
}
.flex1 { flex: 1; }
.flex2 { flex: 2; }
.flex3 { flex: 3; }
.flex4 { flex: 4; }
}
//@mixin modesto {
// font-family: $font-tertiary;
// font-size: 20px;
// font-weight: 700;
//}

View File

@@ -2,6 +2,7 @@
/* LOCAL FONTS */
/* ----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Contrail+One&display=swap');
@import "../node_modules/rpg-awesome/css/rpg-awesome.min.css"; //External Import
@font-face {
font-family: "CCMeanwhile";
@@ -20,6 +21,10 @@
font-family: "Wolfsbane2Expanded";
src: url('../fonts/wolfsbane2expand.ttf');
}
@font-face {
font-family: "IMFellDWPicaSC-Regular";
src: url('../fonts/IMFellDWPicaSC-Regular.ttf');
}
/* ----------------------------------------- */
/* TEXT STYLES */
@@ -28,6 +33,8 @@
@font-primary: 'Signika', sans-serif;
@font-secondary: 'Contrail One', cursive;
@font-tertiary: "Wolfsbane2Expanded", cursive;
@font-special: "IMFellDWPicaSC-Regular", serif;
@font-special2 : "Modesto Condensed", "Palatino Linotype", serif;
@font-header: "Wolfsbane2", cursive;
@font-charname: "Wolfsbane2Expanded", cursive;
@font-handwrite: "CCMeanwhile", cursive;