Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

@css bug, :: selector #158

Open
0-vortex opened this issue Apr 5, 2011 · 7 comments
Open

@css bug, :: selector #158

0-vortex opened this issue Apr 5, 2011 · 7 comments

Comments

@0-vortex
Copy link

0-vortex commented Apr 5, 2011

@css{
::-moz-selection,
::selection
background:#f5ce3c
color:#333
}

or

::-moz-selection,
::selection
background:#f5ce3c
color:#333

not working

@commi
Copy link
Contributor

commi commented Apr 12, 2011

thats a browser bug, you have to seperate the two selectors

@0-vortex
Copy link
Author

without turbine it works.

@commi
Copy link
Contributor

commi commented Apr 12, 2011

what output is generatet if you use
@css{ ::-moz-selection, ::selection: background:#f5ce3c; color:#333; }

and what css works for you? maybe we can spot the difference:)

@0-vortex
Copy link
Author

when i said no one is assigned i meant it like it doesnt give any output, we are talking about turbine so basically nothing gets out. you can try it out. put those two selectors in any way in turbine, they dont get parsed into your actual document, no mather how you write them.

@commi
Copy link
Contributor

commi commented Apr 12, 2011

works for me:

::-moz-selection
    background:#f85d24
    color:#fff
    text-shadow:none

::selection
    background:#f85d24
    color:#fff
    text-shadow:none

::-moz-selection, ::selection
    background:#f85d24
    color:#fff
    text-shadow:none

becomes

::-moz-selection {
    background: #f85d24;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #f85d24;
    color: #fff;
    text-shadow: none;
}
::-moz-selection, ::selection {
    background: #f85d24;
    color: #fff;
    text-shadow: none;
}

plugins used are:
@turbine
plugins:load, css3, legacy, sniffer, boxshadow, backgroundsize
boxshadow:noie

turbine version is the latest.

@0-vortex
Copy link
Author

are you using latest turbine ? what plugins are you loading ? where are you writing it ? what is the rest of your document filled with ? i can give you like 10 not working examples, i use turbine in every project. this is the only thing not working.

@commi
Copy link
Contributor

commi commented Apr 12, 2011

nothing special, i edited the previous comment to include that info.
turbine is the latest version.

i used a clean room example, nothing else in the file. can you send
your not-working file?

2011/4/12 vrtxf
[email protected]:

are you using latest turbine ? what plugins are you loading ? where are you writing it ? what is the rest of your document filled with ? i can give you like 10 not working examples, i use turbine in every project. this is the only thing not working.

Reply to this email directly or view it on GitHub:
https://github.com/SirPepe/Turbine/issues/158#comment_988979

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants