Fix variable naming

This commit is contained in:
Travis Ralston
2020-10-14 16:30:38 -06:00
parent a5d01f2f4d
commit 43208c01a1
11 changed files with 30 additions and 30 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ limitations under the License.
}
.mx_CustomRoomTagPanel {
background-color: $GroupFilterPanel-bg-color;
background-color: $groupFilterPanel-bg-color;
max-height: 40vh;
}
+2 -2
View File
@@ -16,7 +16,7 @@ limitations under the License.
.mx_GroupFilterPanel {
flex: 1;
background-color: $GroupFilterPanel-bg-color;
background-color: $groupFilterPanel-bg-color;
cursor: pointer;
display: flex;
@@ -34,7 +34,7 @@ limitations under the License.
height: 0px;
width: 90%;
border: none;
border-bottom: 1px solid $GroupFilterPanel-divider-color;
border-bottom: 1px solid $groupFilterPanel-divider-color;
}
.mx_GroupFilterPanel .mx_GroupFilterPanel_scroller {
+4 -4
View File
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
$GroupFilterPanelWidth: 56px; // only applies in this file, used for calculations
$groupFilterPanelWidth: 56px; // only applies in this file, used for calculations
.mx_LeftPanel {
background-color: $roomlist-bg-color;
@@ -27,7 +27,7 @@ $GroupFilterPanelWidth: 56px; // only applies in this file, used for calculation
.mx_LeftPanel_GroupFilterPanelContainer {
flex-grow: 0;
flex-shrink: 0;
flex-basis: $GroupFilterPanelWidth;
flex-basis: $groupFilterPanelWidth;
height: 100%;
// Create another flexbox so the GroupFilterPanel fills the container
@@ -45,7 +45,7 @@ $GroupFilterPanelWidth: 56px; // only applies in this file, used for calculation
// Note: The 'room list' in this context is actually everything that isn't the tag
// panel, such as the menu options, breadcrumbs, filtering, etc
.mx_LeftPanel_roomListContainer {
width: calc(100% - $GroupFilterPanelWidth);
width: calc(100% - $groupFilterPanelWidth);
background-color: $roomlist-bg-color;
// Create another flexbox (this time a column) for the room list components
@@ -170,7 +170,7 @@ $GroupFilterPanelWidth: 56px; // only applies in this file, used for calculation
// We have to forcefully set the width to override the resizer's style attribute.
&.mx_LeftPanel_hasGroupFilterPanel {
width: calc(68px + $GroupFilterPanelWidth) !important;
width: calc(68px + $groupFilterPanelWidth) !important;
}
&:not(.mx_LeftPanel_hasGroupFilterPanel) {
width: 68px !important;