Claas Augner
Claas Augner
You should put the rule `-moz-border-radius-bottomleft: 0 !important;` after the other two. The reason for this is that the `order-alphabetical` rule [ignores the prefixes](https://github.com/CSSLint/csslint/blob/78d218d591387783c8c62579974618b69e1d92bb/src/rules/order-alphabetical.js#L41). If two properties only differ in...
Okay, this is almost certainly a bug. There is no reason why `border-bottom-left-radius` should come after `border-radius-bottomleft` (vendor-prefixed or not). Consider [adding an ignore comment](https://github.com/CSSLint/csslint/wiki/Ignoring-parts-of-CSS-during-linting) or migrating to [stylelint](https://github.com/stylelint/stylelint) (cf....
> Is there another way that supports regex or glob patterns? There is currently no way except resolving the files outside of csslint, e.g. in a bash script (see [StackOverflow](stackoverflow.com/questions/5991732/get-all-directories-comma-separated-and-send-output-to-other-script)...
@wbern Due to a limitation of Vue/Vuex, no performance would actually be saved: https://github.com/vuejs/vuex/issues/651 Vuex-Undo-Redo still has to dispatch each mutation, and each mutation triggers the reactivity of each affected...
> What browser are you using? https://caniuse.com/sharedarraybuffer Firefox – which has disabled `SharedArrayBuffer` as of [January 2018](https://blog.mozilla.org/security/2018/01/03/mitigations-landing-new-class-timing-attack/) to mitigate Meltdown/Spectre.
> In #1038 the problem is no or an invalid link is given as the link property. @nickvergessen Since @p-bo mentions that they can click the link in the desktop...
@p-bo If you're familiar with your browser's developer tools, would you be able to post the response (with sensitive data replaced by `***`) of the XHR request `GET /ocs/v2.php/apps/notifications/api/v2/notifications` when...
@nickvergessen So since that notification does have a link, shouldn't it be fixed by the backport? **edit**: And if the link is invalid, wouldn't it be a https://github.com/nextcloud/spreed issue?
Oops, I'm sorry, I totally missed that link. 🤦
This is _actually_ a content issue. The MDN breadcrumbs are fine (just verified with Mac OS integrated VoiceOver), but the [recipe on the MDN **page**](https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Breadcrumb_Navigation#recipe) advertises using `content: "→";`, which...