View css-slack-dark.css
/* = my customization = | |
* | |
* tip for enabling dev tools in the app: set an env var called SLACK_DEVELOPER_MENU to true | |
* then run on mac via terminal: open -a slack | |
* you'll be able to find it in View > Developer | |
*/ | |
[lang] body, | |
[lang] .c-texty_input, | |
[lang=en-US] #msg_input.texty_legacy, |
View test
Imagina que você tem no bundling uma resolução estática... |
View gist:a88e4e2c56302447d4429b712733dc68
$("img").load(function() { | |
// handle the image | |
}).each(function() { | |
// because image can be loaded before jquery binds the load event | |
if (this.complete) { | |
$(this).trigger("load"); | |
} | |
}); |
View SassMeister-input.scss
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$mq-mobile-portrait : 320px !default; | |
$mq-mobile-landscape : 568px !default; |
View SassMeister-input.scss
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$mq-mobile-portrait : 320px !default; | |
$mq-mobile-landscape : 568px !default; | |
$mq-tablet-portrait : 768px !default; | |
$mq-tablet-landscape : 1024px !default; | |
$mq-desktop : 1382px !default; |