forked from matrix-org/matrix-react-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1643 - Hide elements in "Space-Overview" (Screen when selecting a space)
- Loading branch information
Showing
132 changed files
with
5,943 additions
and
2,174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
name: Static Analysis | ||
on: | ||
workflow_dispatch: | ||
pull_request: {} | ||
merge_group: | ||
types: [checks_requested] | ||
|
@@ -21,14 +22,44 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: "yarn" | ||
|
||
# VERJI SPECIFIC - yarn link FOR matrix-react-sdk-module-api on verji-main branch | ||
#- name: "Veri - Clone Github Repo Action - Download verji-main of module-api" | ||
# # You may pin to the exact commit or the version. | ||
# # uses: GuillaumeFalourd/clone-github-repo-action@19817562c346ff60f9935158dede6c5ece8fd0ac | ||
# uses: GuillaumeFalourd/[email protected] | ||
# with: | ||
# # Repository Owner | ||
# owner: verji | ||
# # Repository name | ||
# repository: "matrix-react-sdk-module-api" | ||
# # PAT with repository scope (https://github.com/settings/tokens) | ||
# access-token: ${{secrets.PAT}} | ||
# # Depth of the clone (default: full history) | ||
# depth: 1 | ||
# # Branch name (default: main) | ||
# branch: "verji-main" | ||
# # Clone with submodules | ||
# submodule: false # optional, default is false | ||
# - name: "Verji - Build and yarn link matrix-react-sdk-module-api (prepublish)" | ||
# uses: Azure/powershell@v2 | ||
# with: | ||
# # Yarn link matrix-react-sdk-module-api #--skipLibCheck build --skipLibCheck | ||
# inlineScript: "cd matrix-react-sdk-module-api && yarn && yarn link && yarn prepublishOnly && cd .. && cd .. && cd 'matrix-react-sdk'" | ||
# azPSVersion: "latest" | ||
#END VERJI SPECIFIC | ||
- name: Install Deps | ||
run: "./scripts/ci/install-deps.sh --ignore-scripts" | ||
|
||
# VERJI | ||
# - name: "Verji - yarn link matrix-react-sdk-module-api/verji-main into matrix-react-sdk" | ||
# uses: Azure/powershell@v2 | ||
# with: | ||
# # Yarn link matrix-react-sdk-module-api #--skipLibCheck | ||
# inlineScript: "yarn link '@matrix-org/react-sdk-module-api'" | ||
# azPSVersion: "latest" | ||
# VERJI END | ||
- name: Typecheck | ||
run: "yarn run lint:types" | ||
|
||
|
@@ -55,6 +86,7 @@ jobs: | |
|
||
i18n_lint: | ||
name: "i18n Check" | ||
if: ${{ github.ref_name != 'verji-develop' }} | ||
uses: matrix-org/matrix-web-i18n/.github/workflows/i18n_check.yml@main | ||
with: | ||
hardcoded-words: "Element" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Verji Release Drafter | ||
on: | ||
push: | ||
branches: [verji-staging] | ||
workflow_dispatch: {} | ||
concurrency: ${{ github.workflow }} | ||
jobs: | ||
draft: | ||
uses: verji/matrix-js-sdk/.github/workflows/release-drafter-workflow.yml@verji-develop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
ROSBERG FILE | ||
*/ | ||
|
||
.mx_MiscHeaderButtons { | ||
display: flex; | ||
&::before { | ||
content: unset; | ||
} | ||
} | ||
|
||
.mx_MiscHeaderButtons::before { | ||
content: ""; | ||
//background-color: $header-divider-color; | ||
opacity: 0.5; | ||
margin: 6px 8px; | ||
border-radius: 1px; | ||
width: 1px; | ||
} | ||
|
||
.mx_MiscHeader_miscButton { | ||
cursor: pointer; | ||
flex: 0 0 auto; | ||
margin-left: 1px; | ||
margin-right: 1px; | ||
height: 32px; | ||
width: 32px; | ||
position: relative; | ||
border-radius: 100%; | ||
|
||
&::before { | ||
content: ""; | ||
position: absolute; | ||
top: 4px; // center with parent of 32px | ||
left: 4px; // center with parent of 32px | ||
height: 24px; | ||
width: 24px; | ||
background-color: $icon-button-color; | ||
mask-repeat: no-repeat; | ||
mask-size: contain; | ||
} | ||
|
||
&:hover { | ||
//background: rgba($accent-color, 0.1); | ||
|
||
&::before { | ||
//background-color: $accent-color; | ||
} | ||
} | ||
} | ||
|
||
.mx_MiscHeader_miscButton_highlight { | ||
&::before { | ||
//background-color: $accent-color !important; | ||
} | ||
} | ||
|
||
.mx_MiscHeader_roomSupportButton::before { | ||
mask-image: url("$(res)/img/element-icons/settings/help.svg"); | ||
mask-position: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
res/css/views/dialogs/_ConfirmInviteExternalUsersDialog.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* ROSBERG style module */ | ||
/* NOTE: This code (and any other Rosberg .pcss/.scss files) has to be imported in here: res\css\_components.pcss */ | ||
|
||
.mx_ConfirmInviteExternalUsersDialog { | ||
&.mx_BaseDialog { | ||
width: 480px; | ||
} | ||
} | ||
|
||
.mx_Dialog_content { | ||
margin-bottom: 24px; | ||
} | ||
|
||
.vmx_all_users { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
gap: 20px; | ||
} | ||
|
||
.mx_ConfirmInviteExternalUsersDialog_user { | ||
display: flex; | ||
flex-direction: column; | ||
flex: 1; | ||
padding: 8px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
|
||
:first-child { | ||
margin-top: 0; | ||
} | ||
|
||
&_email, | ||
&_project, | ||
&_phoneNr { | ||
margin-top: 4px; | ||
font-style: italic; | ||
white-space: nowrap; | ||
} | ||
} |
Oops, something went wrong.