Skip to content
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

[css] add ':focus-within' pseudo class #41248

Closed
mattez opened this issue Jan 7, 2018 · 14 comments
Closed

[css] add ':focus-within' pseudo class #41248

mattez opened this issue Jan 7, 2018 · 14 comments
Assignees
Labels
css-less-scss Issues and items concerning CSS,Less,SCSS styling feature-request Request for new features or functionality verification-needed Verification of issue is requested verified Verification succeeded
Milestone

Comments

@mattez
Copy link

mattez commented Jan 7, 2018

CSS autocomplete does not know 'focus-within' css property. It's currently in use with all modern browsers excluding Edge as listed on caniuse
My setup:

Version 1.19.1
Commit 0759f77bb8d86658bc935a10a64f6182c5a1eeba
Date 2017-12-19T09:41:01.414Z
Shell 1.7.9
Renderer 58.0.3029.110
Node 7.9.0
Architecture x64

Steps to Reproduce:

Create Any CSS element and start typing 'focus-within'.
@vscodebot vscodebot bot added the css-less-scss Issues and items concerning CSS,Less,SCSS styling label Jan 7, 2018
@aeschli aeschli changed the title CSS autocomplete does not know 'focus-within' css property. [css] add ':focus-within' pseudo class Jan 11, 2018
@aeschli
Copy link
Contributor

aeschli commented Jan 11, 2018

@aeschli aeschli added this to the Backlog milestone Jan 11, 2018
@aeschli aeschli added the feature-request Request for new features or functionality label Jan 11, 2018
@connorshea
Copy link
Contributor

connorshea commented Jun 3, 2018

I have :focus suggested for me, but not :focus-within.

screen shot 2018-06-03 at 2 07 49 pm

mdn/data has the :focus-within selector, but I guess the vscode-css-language-server doesn't use it?

I guess selectors were outside the scope of microsoft/vscode-css-languageservice#68?

@connorshea
Copy link
Contributor

connorshea commented Jun 3, 2018

pseudoClasses such as :focus (and :focus-within if it was in the dataset) are listed in css-schema.xml, so that'd be where it should be added. Maybe the language service should source pseudoclasses from mdn/data as well so it stays up-to-date?

cc: @octref

@octref
Copy link
Contributor

octref commented Jun 4, 2018

@connorshea Yes they are in here: https://github.com/mdn/data/blob/master/css/selectors.json#L202, and we could source the selectors.

@ely-alamillo
Copy link

If this hasn't been taken up, I'd like to give it a shot.

@octref octref modified the milestones: Backlog, June 2018 Jun 5, 2018
@octref
Copy link
Contributor

octref commented Jun 5, 2018

@ely-alamillo Sure! Here are some hints to get you started:

We look forward to your PR 🌟

@octref
Copy link
Contributor

octref commented Jun 5, 2018

@aeschli Just FYI, I also added the instruction to css-language-features: 6745661

@connorshea
Copy link
Contributor

connorshea commented Jun 5, 2018

I added some info about mapping pseudo-classes between mdn/data and mdn/browser-compat-data to microsoft/vscode-css-languageservice#102

@aeschli
Copy link
Contributor

aeschli commented Jun 5, 2018

@octref @connorshea Thanks a lot!

@ely-alamillo
Copy link

@octref I have been exploring the code and how it all works together and I'm not 100% sure on which part I should put my focus on. I see that generate_browserjs.js is generating the data used in vscode-language-service. However I'm having trouble on figuring out "importing the correct MDN data" as mentioned by you earlier. Would appreciate further guidance in possible.

@octref
Copy link
Contributor

octref commented Jun 11, 2018

@octref
Copy link
Contributor

octref commented Jun 18, 2018

@ely-alamillo Are you still interested in contributing or hitting any blocking issues? We'll need to close this issue by this Friday.

octref added a commit to microsoft/vscode-css-languageservice that referenced this issue Jun 18, 2018
octref added a commit to microsoft/vscode-css-languageservice that referenced this issue Jun 18, 2018
@octref
Copy link
Contributor

octref commented Jun 18, 2018

These new pseudo selectors and elements have been sourced from mdn/data

{
  pseudoSelectorDescriptions: {
    ':defined': 'The :defined CSS pseudo-class represents any element that has been defined. This includes any standard element built in to the browser, and custom elements that have been successfully defined (i.e. with the CustomElementRegistry.define() method).',
    ':dir': 'The :dir() CSS pseudo-class matches elements based on the directionality of the text contained in them.',
    ':focus-visible': 'The :focus-visible pseudo-class applies while an element matches the :focus pseudo-class and the UA determines via heuristics that the focus should be made evident on the element.',
    ':focus-within': 'The :focus-within pseudo-class applies to any element for which the :focus pseudo class applies as well as to an element whose descendant in the flat tree (including non-element nodes, such as text nodes) matches the conditions for matching :focus.',
    ':placeholder-shown': 'The :placeholder-shown CSS pseudo-class represents any <input> or <textarea> element that is currently displaying placeholder text.'
  },
  pseudoElementDescriptions: {
    '::-moz-range-progress': 'The ::-moz-range-progress CSS pseudo-element is a Mozilla extension that represents the lower portion of the track (i.e., groove) in which the indicator slides in an <input> of type="range". This portion corresponds to values lower than the value currently selected by the thumb (i.e., virtual knob).',
    '::-moz-range-thumb': `The ::-moz-range-thumb CSS pseudo-element is a Mozilla extension that represents the thumb (i.e., virtual knob) of an <input> of type="range". The user can move the thumb along the input's track to alter its numerical value.`,
    '::-moz-range-track': 'The ::-moz-range-track CSS pseudo-element is a Mozilla extension that represents the track (i.e., groove) in which the indicator slides in an <input> of type="range".',
    '::-webkit-progress-inner-element': 'The ::-webkit-progress-inner-element CSS pseudo-element represents the outermost container of the <progress> element. It is the parent of the ::-webkit-progress-bar pseudo-element.',
    '::grammar-error': 'The ::grammar-error CSS pseudo-element represents a text segment which the user agent has flagged as grammatically incorrect.',
    '::placeholder': 'The ::placeholder CSS pseudo-element represents the placeholder text of a form element.',
    '::spelling-error': 'The ::spelling-error CSS pseudo-element represents a text segment which the user agent has flagged as incorrectly spelled.'
  }
}

@ely-alamillo
Copy link

@octref I wasn't able to get to a working solution within time. Thanks for all the help, will keep looking to contribute in the future 👍

@aeschli aeschli assigned octref and unassigned aeschli Jun 26, 2018
@aeschli aeschli added the verification-needed Verification of issue is requested label Jun 26, 2018
@jrieken jrieken added the verified Verification succeeded label Jun 26, 2018
@vscodebot vscodebot bot locked and limited conversation to collaborators Aug 9, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
css-less-scss Issues and items concerning CSS,Less,SCSS styling feature-request Request for new features or functionality verification-needed Verification of issue is requested verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

6 participants