forked from olcxjas-softworks/LarpixClient
Fix inherit tag
This commit is contained in:
parent
bb736b26bd
commit
134a341b6d
3 changed files with 35 additions and 35 deletions
|
|
@ -55,21 +55,21 @@
|
||||||
</sidebar>
|
</sidebar>
|
||||||
<sidebar class="second" id="roomsbar">
|
<sidebar class="second" id="roomsbar">
|
||||||
<roomtopbar>
|
<roomtopbar>
|
||||||
<inherit></inherit>
|
<inherit style="display: flex;"></inherit>
|
||||||
</roomtopbar>
|
</roomtopbar>
|
||||||
<roomcontent2>
|
<roomcontent2>
|
||||||
</roomcontent2>
|
</roomcontent2>
|
||||||
</sidebar>
|
</sidebar>
|
||||||
<roomcontent>
|
<roomcontent>
|
||||||
<roomtopbar>
|
<roomtopbar>
|
||||||
<inherit></inherit>
|
<inherit style="display: flex;"></inherit>
|
||||||
</roomtopbar>
|
</roomtopbar>
|
||||||
<roomcontent2>
|
<roomcontent2>
|
||||||
</roomcontent2>
|
</roomcontent2>
|
||||||
</roomcontent>
|
</roomcontent>
|
||||||
<sidebar class="second" id="roomdetailsbar" style="display: none;">
|
<sidebar class="second" id="roomdetailsbar" style="display: none;">
|
||||||
<roomtopbar>
|
<roomtopbar>
|
||||||
<inherit></inherit>
|
<inherit style="display: flex;"></inherit>
|
||||||
</roomtopbar>
|
</roomtopbar>
|
||||||
<roomcontent2>
|
<roomcontent2>
|
||||||
</roomcontent2>
|
</roomcontent2>
|
||||||
|
|
|
||||||
|
|
@ -76,38 +76,38 @@ var joinSpaceScreen = `
|
||||||
//roombars
|
//roombars
|
||||||
var homeRoomBar = `
|
var homeRoomBar = `
|
||||||
<div class="sidebar-section-header">
|
<div class="sidebar-section-header">
|
||||||
<button class="collapse-text-button" id="collapse-dms" onclick="clickCollapseDms()">
|
<button class="collapse-text-button" id="collapse-dms" onclick="clickCollapseDms()">
|
||||||
<span><blah>title.dms</blah></span>
|
<span><blah>title.dms</blah></span>
|
||||||
<svg class="chevron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
|
<svg class="chevron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
|
||||||
stroke="var(--text-color)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
stroke="var(--text-color)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
<polyline points="6 9 12 15 18 9"></polyline>
|
<polyline points="6 9 12 15 18 9"></polyline>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<button class="add-action-button" id="add-dm-btn" onclick="clickAddDm()">
|
<button class="add-action-button" id="add-dm-btn" onclick="clickAddDm()">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="var(--text-color)"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="var(--text-color)"
|
||||||
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
<line x1="12" y1="5" x2="12" y2="19"></line>
|
<line x1="12" y1="5" x2="12" y2="19"></line>
|
||||||
<line x1="5" y1="12" x2="19" y2="12"></line>
|
<line x1="5" y1="12" x2="19" y2="12"></line>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="sidebar-section-header">
|
<div class="sidebar-section-header">
|
||||||
<button class="collapse-text-button" id="collapse-groups" onclick="clickCollapseGroups()">
|
<button class="collapse-text-button" id="collapse-groups" onclick="clickCollapseGroups()">
|
||||||
<span><blah>title.groups</blah></span>
|
<span><blah>title.groups</blah></span>
|
||||||
<svg class="chevron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
|
<svg class="chevron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
|
||||||
stroke="var(--text-color)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
stroke="var(--text-color)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
<polyline points="6 9 12 15 18 9"></polyline>
|
<polyline points="6 9 12 15 18 9"></polyline>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<button class="add-action-button" id="add-group-btn" onclick="clickAddGroup()">
|
<button class="add-action-button" id="add-group-btn" onclick="clickAddGroup()">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="var(--text-color)"
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="var(--text-color)"
|
||||||
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
<line x1="12" y1="5" x2="12" y2="19"></line>
|
<line x1="12" y1="5" x2="12" y2="19"></line>
|
||||||
<line x1="5" y1="12" x2="19" y2="12"></line>
|
<line x1="5" y1="12" x2="19" y2="12"></line>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -374,7 +374,7 @@ blah, inherit, .inherit {
|
||||||
all: inherit;
|
all: inherit;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: inline;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue