This file contains hidden or 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
/* = 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, |
This file contains hidden or 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
Imagina que você tem no bundling uma resolução estática... |
This file contains hidden or 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
$("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"); | |
} | |
}); |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$mq-mobile-portrait : 320px !default; | |
$mq-mobile-landscape : 568px !default; |
This file contains hidden or 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
// ---- | |
// 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; |