Apps Script公式リファレンス: Apps Script Reference |障害・課題追跡: IssueTracker |Google Workspace: Status Dashboard - Summary

2019年5月26日日曜日

Googleアドオン開発のCSSパッケージ


<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">

↑を<head></head>内に入れておく


テキストボックスとボタンを表示する例

スタイルを設定しなくてもガイドに沿ったスタイルを適用してくれる


スタイルを読み込まない場合はこうなる



コード.gs
function doGet() {
  return HtmlService.createHtmlOutputFromFile("index");
}
意訳
この機能がやること
指定したHTMLファイルを表示する




index.html
<!DOCTYPE html>
<html>

<head>
  <link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
</head>

<body>
  <input type='text'>
  <button>button</button>
</body>

</html>
意訳
これはHTML5文書です



スタイルを読み込む



テキストボックス
ボタン





参考

CSS package for editor add-ons
https://developers.google.com/gsuite/add-ons/guides/css

CSSの中身

Latest post

Google Apps Scriptの障害時はIssueTrackerを見てみる - Incidents for Apps Script are reported on Issue Tracker

IssueTracker > Apps Script issues https://issuetracker.google.com/savedsearches/566234 Google Apps Scriptの障害時は IssueTracker に課題が上がっていることが...