-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: z-index issues #1264
Merged
Merged
fix: z-index issues #1264
Conversation
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
marcosmoura
approved these changes
Dec 19, 2017
I have the latest version installed and I still have this issue |
@alexmedkex because builded version is something changing and then this fix doesnt work :/ #1525 (comment) |
Is there any workaround at this moment? |
@alexmedkex just apply same css to rewrite z-indexes |
I tried but it didn't work for me. I wasn't exactly sure which tag that I
should modify the z-index of, but I tried on everything but no success.
…On 25 March 2018 at 20:53, Samuell ***@***.***> wrote:
@alexmedkex <https://github.com/alexmedkex> just apply same css to
rewrite z-indexes
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1264 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGb4NK1B4zPHfYUV-87Ohcv6-EgLrepVks5th-esgaJpZM4Q20l_>
.
|
@alexmedkex use important that should help |
<md-dialog class="dialog" :md-active.sync="showDialog">
<md-dialog-title>Make Order</md-dialog-title>
<md-field md-select-menu-container>
<label for="Outcome Token">Outcome Token</label>
<md-select v-model="outcomeAddress" name="Outcome token">
<md-option v-for="outcome in outcomes" :key="outcome.address" :value="
outcome.address">{{ outcome.name }}</md-option>
</md-select>
</md-field>
<md-button class="md-raised md-primary" @click="setAllowance()">Set
Allowance</md-button>
</md-dialog>
Where should I modify the CSS? I'm trying with
z-index: 99999 !important;
but I can't get it to work
…On 25 March 2018 at 21:13, Samuell ***@***.***> wrote:
@alexmedkex <https://github.com/alexmedkex> use important that should help
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1264 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGb4NPIKXFlNRd-o6kAbuspZS1cp1clyks5th-xigaJpZM4Q20l_>
.
|
on what class do you puting it? @alexmedkex |
I tried on different tags/classes, for example like this:
<md-dialog class="dialog" :md-active.sync="showDialog">
<md-dialog-title>Make Order</md-dialog-title>
<md-field>
<label for="Outcome Token">Outcome Token</label>
<md-select class="md-select-menu-container" v-model="outcomeAddress"
name="Outcome
token">
<md-option v-for="outcome in outcomes" :key="outcome.address" :value="
outcome.address">{{ outcome.name }}</md-option>
</md-select>
</md-field>
<md-button class="md-raised md-primary" @click="setAllowance()">Set
Allowance</md-button>
</md-dialog>
.md-select-menu-container {
z-index: 99999 !important;
}
…On 25 March 2018 at 21:36, Alex Medkex ***@***.***> wrote:
<md-dialog class="dialog" :md-active.sync="showDialog">
<md-dialog-title>Make Order</md-dialog-title>
<md-field md-select-menu-container>
<label for="Outcome Token">Outcome Token</label>
<md-select v-model="outcomeAddress" name="Outcome token">
<md-option v-for="outcome in outcomes" :key="outcome.address" :value="
outcome.address">{{ outcome.name }}</md-option>
</md-select>
</md-field>
<md-button class="md-raised md-primary" @click="setAllowance()">Set
Allowance</md-button>
</md-dialog>
Where should I modify the CSS? I'm trying with
z-index: 99999 !important;
but I can't get it to work
On 25 March 2018 at 21:13, Samuell ***@***.***> wrote:
> @alexmedkex <https://github.com/alexmedkex> use important that should
> help
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <#1264 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/AGb4NPIKXFlNRd-o6kAbuspZS1cp1clyks5th-xigaJpZM4Q20l_>
> .
>
|
@alexmedkex try class |
Yes it works! Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Components issues: #1157, #1190, #1149
And docs issue #1134